1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/socket/lib/socket.rb: UNIXSocket is not always exists. fixes

install error on Windows, introduced at r52601.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52609 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2015-11-17 04:55:36 +00:00
parent 55a692bbc2
commit 4b9cd6edce
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Nov 17 13:43:46 2015 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/socket/lib/socket.rb: UNIXSocket is not always exists. fixes
install error on Windows, introduced at r52601.
Tue Nov 17 11:27:23 2015 Eric Wong <e@80x24.org>
* ext/socket/lib/socket.rb (Socket#recvfrom_nonblock):

View file

@ -1347,4 +1347,4 @@ class UNIXServer < UNIXSocket
def accept_nonblock(exception: true)
__accept_nonblock(exception)
end
end
end if defined?(UNIXSocket)