aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-22 10:48:59 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-22 10:48:59 +0000
commitfa65fc9aeb5e73b84ce80c4c2c3edaa888362e03 (patch)
treefc65bee1dcb86a5cf559509d077c609a4a3f636b /ext
parent8cd604c6c7bb27545bf7fcecf06cad673ab4131d (diff)
downloadruby-fa65fc9aeb5e73b84ce80c4c2c3edaa888362e03.tar.gz
* 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
Diffstat (limited to 'ext')
-rw-r--r--ext/curses/extconf.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/curses/extconf.rb b/ext/curses/extconf.rb
index cd8f685c8a..e1499437d0 100644
--- a/ext/curses/extconf.rb
+++ b/ext/curses/extconf.rb
@@ -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")