summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext/readline/extconf.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b146405faf..6e4c47054f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Mar 31 23:57:45 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/readline/extconf.rb: fix typo, `$defs` not `$DEFS`.
+ [ruby-core:61756] [Bug #9578]
+
Mon Mar 31 17:23:50 2014 NAKAMURA Usaku <usa@ruby-lang.org>
* test/ruby/memory_status.rb: require envutil before accessing EnvUtil
diff --git a/ext/readline/extconf.rb b/ext/readline/extconf.rb
index 70dfd0b6c2..4fd80799ed 100644
--- a/ext/readline/extconf.rb
+++ b/ext/readline/extconf.rb
@@ -102,7 +102,7 @@ unless readline.have_type("rl_hook_func_t")
# rl_hook_func_t is available since readline-4.2 (2001).
# Function is removed at readline-6.3 (2014).
# However, editline (NetBSD 6.1.3, 2014) doesn't have rl_hook_func_t.
- $DEFS << "-Drl_hook_func_t=Function"
+ $defs << "-Drl_hook_func_t=Function"
end
create_makefile("readline")