]> granicus.if.org Git - php/commitdiff
Undefine AF_UNIX under RISC OS
authorAlex Waugh <alexwaugh@php.net>
Sun, 23 Dec 2001 00:46:13 +0000 (00:46 +0000)
committerAlex Waugh <alexwaugh@php.net>
Sun, 23 Dec 2001 00:46:13 +0000 (00:46 +0000)
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
main/fopen_wrappers.c
main/network.c

index 281c6614196f07405293867d22ac956c2c5bbcf4..8149eef5ec73631d85fa12129ac9c21c8feb97dd 100644 (file)
@@ -56,7 +56,7 @@
 #endif
 #endif
 
-#ifdef PHP_WIN32
+#if defined(PHP_WIN32) || defined(__riscos__)
 #undef AF_UNIX
 #endif
 
index fdd20ce3615533cdc17c135c484a0468da664089..bb54225f15c22d7861075bea40632d45f32a875e 100644 (file)
@@ -56,7 +56,7 @@
 #endif
 #endif
 
-#ifdef PHP_WIN32
+#if defined(PHP_WIN32) || defined(__riscos__)
 #undef AF_UNIX
 #endif
 
index d760e2b4b308b4d7604c310237e7e6e9e995b92a..2698a813317460036e16a5cf56130129e9a3c81d 100644 (file)
@@ -73,7 +73,7 @@
 #endif
 #endif
 
-#ifdef PHP_WIN32
+#if defined(PHP_WIN32) || defined(__riscos__)
 #undef AF_UNIX
 #endif
 
index dd42fa1ba4fa3c3a477b119f56d2025e14e41c92..597bcb6901638511ed61d1cbf29c689e1b37df48 100644 (file)
@@ -55,7 +55,7 @@ int            inet_aton(const char *, struct in_addr *);
 
 #include "php_network.h"
 
-#ifdef PHP_WIN32
+#if defined(PHP_WIN32) || defined(__riscos__)
 #undef AF_UNIX
 #endif