From 435ad02cc5cc93e5e94ce65158910709d2cc52f5 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 1 Feb 2009 23:12:52 +0000 Subject: * lib/xmlrpc/server.rb (Server#serve): gets rid of hardcoded platform names. * lib/resolv.rb (Resolv::Hosts::DefaultFileName), (Resolv::DNS::Config.default_config_hash): tries win32/resolv on mswin64 too. * lib/rubygems/specification.rb (Gem::Specification#ruby_code): aded mswin64. * lib/drb/extservm.rb (DRb::ExtServManager#invoke_service_command): spawn is better to start a process in background. * ext/extmk.rb: uses FNM_SYSCASE. * instruby.rb: installs win32.h on mswin64 platform. [ruby-core:21722] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rubygems/specification.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/rubygems') diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb index 2e6cdc1b0..b3a42cf90 100644 --- a/lib/rubygems/specification.rb +++ b/lib/rubygems/specification.rb @@ -1153,6 +1153,8 @@ module Gem @new_platform = Gem::Platform::RUBY when 'mswin32' then # was Gem::Platform::WIN32 @new_platform = Gem::Platform.new 'x86-mswin32' + when 'mswin64' then + @new_platform = Gem::Platform.new 'x86-mswin64' when 'i586-linux' then # was Gem::Platform::LINUX_586 @new_platform = Gem::Platform.new 'x86-linux' when 'powerpc-darwin' then # was Gem::Platform::DARWIN -- cgit