Merge pull request #4235 from cheatfate/nosignal

Solaris dont have MSG_NOSIGNAL
This commit is contained in:
Andreas Rumpf
2016-05-29 22:22:05 +02:00

View File

@@ -1623,6 +1623,10 @@ when defined(macosx):
MSG_NOSIGNAL* = 0'i32
var
SO_NOSIGPIPE* {.importc, header: "<sys/socket.h>".}: cint
elif defined(solaris):
# Solaris dont have MSG_NOSIGNAL
const
MSG_NOSIGNAL* = 0'i32
else:
var
MSG_NOSIGNAL* {.importc, header: "<sys/socket.h>".}: cint