* ext/socket/extconf.rb: win64 is just same with win32 about socket.

notice: but wince is not same.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2010-11-01 15:26:58 +00:00
Родитель 83c5219287
Коммит f6150aa7df
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Nov 2 00:25:54 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/socket/extconf.rb: win64 is just same with win32 about socket.
notice: but wince is not same.
Mon Nov 1 21:25:57 2010 URABE Shyouhei <shyouhei@ruby-lang.org> Mon Nov 1 21:25:57 2010 URABE Shyouhei <shyouhei@ruby-lang.org>
* main.c: <stdlib.h> is needed, to introduce the getenv(3) * main.c: <stdlib.h> is needed, to introduce the getenv(3)

Просмотреть файл

@ -1,7 +1,7 @@
require 'mkmf' require 'mkmf'
case RUBY_PLATFORM case RUBY_PLATFORM
when /(ms|bcc)win32|mingw/ when /(ms|bcc)win(32|64)|mingw/
test_func = "WSACleanup" test_func = "WSACleanup"
have_library("ws2_32", "WSACleanup") have_library("ws2_32", "WSACleanup")
$defs << "-DHAVE_SOCKETPAIR" $defs << "-DHAVE_SOCKETPAIR"