From 8b5694d5e87e47e349ae30e0e10260f41cb236eb Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 20 Jan 2014 19:35:11 +0000 Subject: * ext/socket/option.c: Use "int" for IP_MULTICAST_LOOP and IP_MULTICAST_TTL on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/socket') diff --git a/ext/socket/option.c b/ext/socket/option.c index 74bc15a106..2aa0768368 100644 --- a/ext/socket/option.c +++ b/ext/socket/option.c @@ -7,7 +7,7 @@ VALUE rb_cSockOpt; #define CAT(x,y) x##y #define XCAT(x,y) CAT(x,y) -#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) +#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) || defined(_WIN32) # define TYPE_IP_MULTICAST_LOOP int # define TYPE_IP_MULTICAST_TTL int #else -- cgit v1.2.3