Browse Source

- Fixed bug #42629 (Dynamically loaded PHP extensions need symbols exported on MacOSX)

PHP-5.2.1RC1
Jani Taskinen 19 years ago
parent
commit
c29136bd08
  1. 2
      Zend/zend_extensions.c

2
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 */

Loading…
Cancel
Save