summaryrefslogtreecommitdiff
path: root/ext/curses/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/curses/extconf.rb')
-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")