ruby-changes:22695
From: akr <ko1@a...>
Date: Wed, 22 Feb 2012 19:49:09 +0900 (JST)
Subject: [ruby-changes:22695] akr:r34744 (trunk): * ext/curses/extconf.rb: show the chosen header and library.
akr 2012-02-22 19:48:59 +0900 (Wed, 22 Feb 2012) New Revision: 34744 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34744 Log: * ext/curses/extconf.rb: show the chosen header and library. Modified files: trunk/ChangeLog trunk/ext/curses/extconf.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 34743) +++ ChangeLog (revision 34744) @@ -1,3 +1,7 @@ +Wed Feb 22 19:47:03 2012 Tanaka Akira <akr@f...> + + * ext/curses/extconf.rb: show the chosen header and library. + Wed Feb 22 19:22:31 2012 Tadayoshi Funaba <tadf@d...> * reverted 34739 for test/date. Index: ext/curses/extconf.rb =================================================================== --- ext/curses/extconf.rb (revision 34743) +++ ext/curses/extconf.rb (revision 34744) @@ -44,7 +44,10 @@ } if header_library - header, _ = header_library + header, library = header_library + puts "header: #{header}" + puts "library: #{library}" + curses = [header] if header == 'curses_colr/curses.h' curses.unshift("varargs.h") -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/