From 91d1f4745ccc4ec919d65175e2cc732652a6c581 Mon Sep 17 00:00:00 2001 From: Hiroyuki Iwatsuki Date: Tue, 6 Mar 2012 01:31:53 +0900 Subject: [PATCH] Fix platform detection for x64-mswin64 --- ext/nokogiri/extconf.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/nokogiri/extconf.rb b/ext/nokogiri/extconf.rb index 86e3ad73c74..28d44cd67fb 100644 --- a/ext/nokogiri/extconf.rb +++ b/ext/nokogiri/extconf.rb @@ -17,7 +17,7 @@ $CFLAGS << " #{ENV["CFLAGS"]}" $LIBS << " #{ENV["LIBS"]}" -if RbConfig::CONFIG['target_os'] == 'mingw32' || RbConfig::CONFIG['target_os'] =~ /mswin32/ +if RbConfig::CONFIG['target_os'] == 'mingw32' || RbConfig::CONFIG['target_os'] =~ /mswin/ $CFLAGS << " -DXP_WIN -DXP_WIN32 -DUSE_INCLUDED_VASPRINTF" elsif RbConfig::CONFIG['target_os'] =~ /solaris/ $CFLAGS << " -DUSE_INCLUDED_VASPRINTF" @@ -34,7 +34,7 @@ $CFLAGS << " -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline" end -if RbConfig::CONFIG['target_os'] =~ /mswin32/ +if RbConfig::CONFIG['target_os'] =~ /mswin/ lib_prefix = 'lib' # There's no default include/lib dir on Windows. Let's just add the Ruby ones