diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-11 14:07:20 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-11 14:07:20 +0000 |
commit | 037ce7f6bc29b2eeb4f40f0c28376c1aca8be844 (patch) | |
tree | 0de60c0c48afe9297954143a7bf758bba76df6f3 /ext/socket/rubysocket.h | |
parent | 975e43b8cb8d4cdd3e4ac126db894d1053cb8a02 (diff) |
* ext/socket/rubysocket.h (HAVE_TYPE_STRUCT_SOCKADDR_DL):
MSVC has struct sockadddr_dl, but its content is broken.
http://ruby-mswin.cloudapp.net/vc10-x64/ruby-trunk/log/20130511T103938Z.log.html.gz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40646 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket/rubysocket.h')
-rw-r--r-- | ext/socket/rubysocket.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/socket/rubysocket.h b/ext/socket/rubysocket.h index d049d0f570..7b1d43afac 100644 --- a/ext/socket/rubysocket.h +++ b/ext/socket/rubysocket.h @@ -22,7 +22,11 @@ # include <xti.h> #endif -#ifndef _WIN32 +#ifdef _WIN32 +# if defined(_MSC_VER) +# undef HAVE_TYPE_STRUCT_SOCKADDR_DL +# endif +#else # if defined(__BEOS__) && !defined(__HAIKU__) && !defined(BONE) # include <net/socket.h> # else |