From: Jani Taskinen Date: Tue, 18 Sep 2007 09:24:04 +0000 (+0000) Subject: - Fixed bug #42629 (Dynamically loaded PHP extensions need symbols exported on MacOSX) X-Git-Tag: php-5.2.5RC1~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c29136bd08c48b3d520886e9a42ff55923e6f0b1;p=php - Fixed bug #42629 (Dynamically loaded PHP extensions need symbols exported on MacOSX) --- diff --git a/Zend/zend_extensions.c b/Zend/zend_extensions.c index 3c19b61a82..e69b3e2c6b 100644 --- a/Zend/zend_extensions.c +++ b/Zend/zend_extensions.c @@ -243,7 +243,7 @@ void *zend_mh_bundle_load(char* bundle_path) return NULL; } - bundle_handle = NSLinkModule(bundle_image, bundle_path, NSLINKMODULE_OPTION_PRIVATE); + bundle_handle = NSLinkModule(bundle_image, bundle_path, NSLINKMODULE_OPTION_NONE); NSDestroyObjectFileImage(bundle_image); /* call the init function of the bundle */