From f1e32a8c82ce731cb8d2c6a708b890a51425c5f8 Mon Sep 17 00:00:00 2001 From: Alex Waugh Date: Sun, 4 Nov 2001 12:40:45 +0000 Subject: [PATCH] Undefine AF_UNIX when compiled for RISC OS --- ext/standard/fsock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/fsock.c b/ext/standard/fsock.c index b01c176343..87ac6bcd2e 100644 --- a/ext/standard/fsock.c +++ b/ext/standard/fsock.c @@ -52,7 +52,7 @@ #include #endif #endif -#ifdef PHP_WIN32 +#if defined(PHP_WIN32) || defined(__riscos__) #undef AF_UNIX #endif #if defined(AF_UNIX) -- 2.50.1