ruby-changes:33409
From: nobu <ko1@a...>
Date: Mon, 31 Mar 2014 23:57:53 +0900 (JST)
Subject: [ruby-changes:33409] nobu:r45488 (trunk): readline/extconf.rb: fix typo
nobu 2014-03-31 23:57:47 +0900 (Mon, 31 Mar 2014) New Revision: 45488 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45488 Log: readline/extconf.rb: fix typo * ext/readline/extconf.rb: fix typo, `$defs` not `$DEFS`. [ruby-core:61756] [Bug #9578] Modified files: trunk/ChangeLog trunk/ext/readline/extconf.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 45487) +++ ChangeLog (revision 45488) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Mar 31 23:57:45 2014 Nobuyoshi Nakada <nobu@r...> + + * ext/readline/extconf.rb: fix typo, `$defs` not `$DEFS`. + [ruby-core:61756] [Bug #9578] + Mon Mar 31 17:23:50 2014 NAKAMURA Usaku <usa@r...> * test/ruby/memory_status.rb: require envutil before accessing EnvUtil Index: ext/readline/extconf.rb =================================================================== --- ext/readline/extconf.rb (revision 45487) +++ ext/readline/extconf.rb (revision 45488) @@ -102,7 +102,7 @@ unless readline.have_type("rl_hook_func_ https://github.com/ruby/ruby/blob/trunk/ext/readline/extconf.rb#L102 # 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") -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/