summaryrefslogtreecommitdiff
path: root/ext/standard/php_fopen_wrapper.c
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2017-08-29 22:03:56 +0200
committerKalle Sommer Nielsen <kalle@php.net>2017-08-29 22:03:56 +0200
commitd3bc8beb4ff9e00c3742ada32788239c3f7988e0 (patch)
treeb0a1a030e505855433acb351468c3f72c1f67a88 /ext/standard/php_fopen_wrapper.c
parent63ea681417a7725f96df62739398cd4b8b05ba31 (diff)
downloadphp-git-d3bc8beb4ff9e00c3742ada32788239c3f7988e0.tar.gz
Removed support for BeOS, development for BeOS was supported 17 years ago.
This patch however does not drop support for the BeOS compatible variant, Haiku, see Github PR #2697 which is currently a WiP I intentionally left out some fragments for BeOS in the build system for that seems to be bundles
Diffstat (limited to 'ext/standard/php_fopen_wrapper.c')
-rw-r--r--ext/standard/php_fopen_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c
index 34f5d3afbf..8e7b95e739 100644
--- a/ext/standard/php_fopen_wrapper.c
+++ b/ext/standard/php_fopen_wrapper.c
@@ -388,7 +388,7 @@ php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, const char *pa
return NULL;
}
-#if defined(S_IFSOCK) && !defined(WIN32) && !defined(__BEOS__)
+#if defined(S_IFSOCK) && !defined(PHP_WIN32)
do {
zend_stat_t st;
memset(&st, 0, sizeof(st));