mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/curses/extconf.rb: show the chosen header and library.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8cd604c6c7
commit
fa65fc9aeb
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Feb 22 19:47:03 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/curses/extconf.rb: show the chosen header and library.
|
||||
|
||||
Wed Feb 22 19:22:31 2012 Tadayoshi Funaba <tadf@dotrb.org>
|
||||
|
||||
* reverted 34739 for test/date.
|
||||
|
|
|
@ -44,7 +44,10 @@ header_library = nil
|
|||
}
|
||||
|
||||
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")
|
||||
|
|
Loading…
Reference in a new issue