pkgsrc/devel/SOPE4/patches/patch-sope-core_NGStreams_NGActiveSocket.m
tm 31ca1f8d4f SOPE4: Added devel/SOPE4 version 4.0.8
SOPE is an extensive set of frameworks which form a complete Web application server environment. Besides the Apple WebObjects compatible appserver extended with Zope concepts, it contains a large set of reusable classes: XML processing (SAX, DOM, XML-RPC), MIME/IMAP4 processing, LDAP connectivity, RDBMS connectivity, and iCalendar parsing.
2019-09-11 11:32:26 +00:00

16 lines
428 B
Objective-C

$NetBSD: patch-sope-core_NGStreams_NGActiveSocket.m,v 1.1 2019/09/11 11:32:26 tm Exp $
ignore MSG_NOSIGNAL on sunos
--- sope-core/NGStreams/NGActiveSocket.m.orig 2016-08-17 12:26:04.000000000 +0000
+++ sope-core/NGStreams/NGActiveSocket.m
@@ -54,6 +54,10 @@
# include <sys/ioctl.h>
#endif
+#if defined(__sun)
+# define MSG_NOSIGNAL 0
+#endif
+
#if HAVE_WINDOWS_H && !defined(__CYGWIN32__)
# include <windows.h>
#endif