From 301821bd458421218e9f8c33af53a9870f5c628a Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 7 May 2013 03:10:46 +0000 Subject: * ext/socket/extconf.rb: Set close_fds false for Cygwin. Cygwin doesn't support fd passing. This enables socket extension library cross-compilable by default. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/extconf.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/socket/extconf.rb') diff --git a/ext/socket/extconf.rb b/ext/socket/extconf.rb index 66fb06d7c6..29e401a5ba 100644 --- a/ext/socket/extconf.rb +++ b/ext/socket/extconf.rb @@ -253,6 +253,10 @@ def test_recvmsg_with_msg_peek_creates_fds(headers) # [ruby-dev:44189] # http://bugs.ruby-lang.org/issues/5075 close_fds = false + when /cygwin/ + # Cygwin doesn't support fd passing. + # http://cygwin.com/ml/cygwin/2003-09/msg01808.html + close_fds = false else close_fds = nil end -- cgit v1.2.1