From 29db76b3a8c4764d737a181bf5c7f56ae9541bd9 Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 22 Jul 2009 11:43:32 +0000 Subject: * ext/socket/extconf.rb: define IPPROTO_IPV6 macro for recent Windows SDK. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/extconf.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ext/socket') diff --git a/ext/socket/extconf.rb b/ext/socket/extconf.rb index 7908e62bc..21f99b984 100644 --- a/ext/socket/extconf.rb +++ b/ext/socket/extconf.rb @@ -324,6 +324,9 @@ have_func("getpeereid") have_header("ucred.h", headers) have_func("getpeerucred") +# workaround for recent Windows SDK +$defs << "-DIPPROTO_IPV6=IPPROTO_IPV6" if have_const("IPPROTO_IPV6") && !have_macro("IPPROTO_IPV6") + $distcleanfiles << "constants.h" << "constdefs.*" if have_func(test_func) -- cgit