diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-15 19:23:50 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-15 19:23:50 +0000 |
commit | cd63b84ce9199874816833e8023c9b21c3465869 (patch) | |
tree | 3ab6937758fed21c910a764b3528ce57eaba8936 | |
parent | 49a009bbce0941067f9bdaf01a1391fb3cef7c4e (diff) |
* ext/socket/extconf.rb: workaround for mswin/mingw build problem.
sendmsg emulation in win32/win32.c is not enough.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/socket/extconf.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sat Feb 16 04:21:07 2013 NAKAMURA Usaku <[email protected]> + + * ext/socket/extconf.rb: workaround for mswin/mingw build problem. + sendmsg emulation in win32/win32.c is not enough. + Sat Feb 16 00:19:20 2013 Tanaka Akira <[email protected]> * ext/socket/extconf.rb: use all all tested available headers for diff --git a/ext/socket/extconf.rb b/ext/socket/extconf.rb index a4576c0c7f..bb7be28e0e 100644 --- a/ext/socket/extconf.rb +++ b/ext/socket/extconf.rb @@ -85,7 +85,7 @@ if (doug[] or doug[] or with_cppflags($CPPFLAGS + " -Dss_len=__ss_len", &doug) end -have_struct_member('struct msghdr', 'msg_control', headers) +have_struct_member('struct msghdr', 'msg_control', headers) unless $mswin or $mingw have_struct_member('struct msghdr', 'msg_accrights', headers) if have_func(test_func, headers) |