diff options
author | Alex Waugh <alexwaugh@php.net> | 2001-12-23 00:46:13 +0000 |
---|---|---|
committer | Alex Waugh <alexwaugh@php.net> | 2001-12-23 00:46:13 +0000 |
commit | e320de1e2e20d850f41782a76b2f16242605fd74 (patch) | |
tree | 069f06f097af9c6dcc43bb963333b824b48a5afd /ext/standard/http_fopen_wrapper.c | |
parent | 3b091175357cf54e2c38b50519430ff6c4a1cf94 (diff) | |
download | php-git-e320de1e2e20d850f41782a76b2f16242605fd74.tar.gz |
Undefine AF_UNIX under RISC OS
Diffstat (limited to 'ext/standard/http_fopen_wrapper.c')
-rw-r--r-- | ext/standard/http_fopen_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index fdd20ce361..bb54225f15 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -56,7 +56,7 @@ #endif #endif -#ifdef PHP_WIN32 +#if defined(PHP_WIN32) || defined(__riscos__) #undef AF_UNIX #endif |