ruby-changes:40716
From: naruse <ko1@a...>
Date: Mon, 30 Nov 2015 18:48:38 +0900 (JST)
Subject: [ruby-changes:40716] naruse:r52795 (trunk): * ext/readline/extconf.rb: call dir_config("libedit")
naruse 2015-11-30 18:48:24 +0900 (Mon, 30 Nov 2015) New Revision: 52795 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52795 Log: * ext/readline/extconf.rb: call dir_config("libedit") if --enable-libedit is spcified. [Bug #11751] patched by John Hein Modified files: trunk/ChangeLog trunk/ext/readline/extconf.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 52794) +++ ChangeLog (revision 52795) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Nov 30 18:46:44 2015 NARUSE, Yui <naruse@r...> + + * ext/readline/extconf.rb: call dir_config("libedit") + if --enable-libedit is spcified. [Bug #11751] + patched by John Hein + Mon Nov 30 08:44:29 2015 Eric Wong <e@8...> * variable.c: remove spurious #define for globals Index: ext/readline/extconf.rb =================================================================== --- ext/readline/extconf.rb (revision 52794) +++ ext/readline/extconf.rb (revision 52795) @@ -37,6 +37,7 @@ have_library("ncurses", "tgetnum") || https://github.com/ruby/ruby/blob/trunk/ext/readline/extconf.rb#L37 case enable_libedit when true # --enable-libedit + dir_config("libedit") unless (readline.have_header("editline/readline.h") || readline.have_header("readline/readline.h")) && have_library("edit", "readline") -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/