summaryrefslogtreecommitdiff
path: root/ext/io/console
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-05 10:54:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-05 10:54:37 +0000
commitc1e7d5f5bdfd6187f05b41cf1b421711cc59ce0b (patch)
treead974b278231a7e7b526c039c87167a5792ccc51 /ext/io/console
parent11b97855c4c1ef756fa1546ff0137aad1a910f34 (diff)
io/console: vk_header only on Windows
* ext/io/console/extconf.rb: vk_header is used only on Windows, nonsense to update on other platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50428 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/io/console')
-rw-r--r--ext/io/console/extconf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/io/console/extconf.rb b/ext/io/console/extconf.rb
index e95a795491..1658dc01eb 100644
--- a/ext/io/console/extconf.rb
+++ b/ext/io/console/extconf.rb
@@ -5,7 +5,7 @@ hdr = nil
case
when macro_defined?("_WIN32", "")
# rb_w32_map_errno: 1.8.7
- win32 = true
+ vk_header = "win32_vk.h"
when hdr = %w"termios.h termio.h".find {|h| have_header(h)}
have_func("cfmakeraw", hdr)
when have_header(hdr = "sgtty.h")
@@ -19,6 +19,6 @@ if ok
# rb_io_get_write_io: 1.9.1
# rb_cloexec_open: 2.0.0
create_makefile("io/console") {|conf|
- conf << "\n""VK_HEADER = win32_vk.h\n"
+ conf << "\n""VK_HEADER = #{vk_header}\n"
}
end