From c1e7d5f5bdfd6187f05b41cf1b421711cc59ce0b Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 5 May 2015 10:54:37 +0000 Subject: 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 --- ext/io/console/extconf.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/io/console/extconf.rb') 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 -- cgit v1.2.3