summaryrefslogtreecommitdiff
path: root/ext/io/console/extconf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-03 18:13:10 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-03 18:13:10 +0000
commit11b97855c4c1ef756fa1546ff0137aad1a910f34 (patch)
tree6397de48050098767f71fe09450edc5abf691c88 /ext/io/console/extconf.rb
parentff3322560e5e54863f959d3793df1f37a14f35d8 (diff)
downloadruby-11b97855c4c1ef756fa1546ff0137aad1a910f34.tar.gz
console.c: pressed? on Windows
* ext/io/console/console.c (console_key_pressed_p): new method IO#pressed? on Windows. [EXPERIMENTAL] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/io/console/extconf.rb')
-rw-r--r--ext/io/console/extconf.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/io/console/extconf.rb b/ext/io/console/extconf.rb
index eb431b008d..e95a795491 100644
--- a/ext/io/console/extconf.rb
+++ b/ext/io/console/extconf.rb
@@ -5,6 +5,7 @@ hdr = nil
case
when macro_defined?("_WIN32", "")
# rb_w32_map_errno: 1.8.7
+ win32 = true
when hdr = %w"termios.h termio.h".find {|h| have_header(h)}
have_func("cfmakeraw", hdr)
when have_header(hdr = "sgtty.h")
@@ -17,5 +18,7 @@ if ok
# rb_check_hash_type: 1.9.3
# rb_io_get_write_io: 1.9.1
# rb_cloexec_open: 2.0.0
- create_makefile("io/console")
+ create_makefile("io/console") {|conf|
+ conf << "\n""VK_HEADER = win32_vk.h\n"
+ }
end