summaryrefslogtreecommitdiff
path: root/Zend/zend_extensions.c
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-09-18 09:24:04 +0000
committerJani Taskinen <jani@php.net>2007-09-18 09:24:04 +0000
commitc29136bd08c48b3d520886e9a42ff55923e6f0b1 (patch)
tree2f4c55f82e1bcb81a9d96bc3333885f20db65aa7 /Zend/zend_extensions.c
parent6c49087e64e669711ed693e0788922bb4f6f7d07 (diff)
downloadphp-git-c29136bd08c48b3d520886e9a42ff55923e6f0b1.tar.gz
- Fixed bug #42629 (Dynamically loaded PHP extensions need symbols exported on MacOSX)
Diffstat (limited to 'Zend/zend_extensions.c')
-rw-r--r--Zend/zend_extensions.c2
1 files changed, 1 insertions, 1 deletions
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 */