Change 13887 by jhi@alpha on 2001/12/26 17:13:27

        No AF_UNIX in BeOS.

Affected files ...

.... //depot/perl/util.c#308 edit

Differences ...

==== //depot/perl/util.c#308 (text) ====
Index: perl/util.c
--- perl/util.c.~1~     Wed Dec 26 10:30:06 2001
+++ perl/util.c Wed Dec 26 10:30:06 2001
@@ -4135,7 +4135,11 @@
     struct sockaddr_in connect_addr;
     Sock_size_t size;
 
-    if (protocol || family != AF_UNIX) {
+    if (protocol
+#ifdef AF_UNIX
+       || family != AF_UNIX
+#endif
+       ) {
         errno = EAFNOSUPPORT;
         return -1;
     }
End of Patch.

Reply via email to