summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/sockets/php_sockets.h4
-rw-r--r--ext/sockets/tests/socket_set_option_error_socket_option.phpt5
2 files changed, 0 insertions, 9 deletions
diff --git a/ext/sockets/php_sockets.h b/ext/sockets/php_sockets.h
index 448678366a..17abf95a19 100644
--- a/ext/sockets/php_sockets.h
+++ b/ext/sockets/php_sockets.h
@@ -28,10 +28,6 @@
# include "config.h"
#endif
-#ifdef __APPLE__
-#define __APPLE_USE_RFC_3542
-#endif
-
#if HAVE_SOCKETS
#include <php.h>
diff --git a/ext/sockets/tests/socket_set_option_error_socket_option.phpt b/ext/sockets/tests/socket_set_option_error_socket_option.phpt
index 471d6bf8ca..eaa0e64faf 100644
--- a/ext/sockets/tests/socket_set_option_error_socket_option.phpt
+++ b/ext/sockets/tests/socket_set_option_error_socket_option.phpt
@@ -5,11 +5,6 @@ Test if socket_set_option() returns 'unable to set socket option' failure for in
if (!extension_loaded('sockets')) {
die('SKIP sockets extension not available.');
}
-
-if (PHP_OS == 'Darwin') {
- die('skip Not for OSX');
-}
-
$filename = dirname(__FILE__) . '/006_root_check.tmp';
$fp = fopen($filename, 'w');
fclose($fp);