From: foobar Date: Mon, 17 Jan 2005 17:12:05 +0000 (+0000) Subject: MFH: Forgotten fix for DL_UNLOAD macro X-Git-Tag: php-5.0.4RC1~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01b9a94d41c1dfa2837e731fac7e749d8396472c;p=php MFH: Forgotten fix for DL_UNLOAD macro --- diff --git a/Zend/zend.h b/Zend/zend.h index 0fcbdfe18b..7078d7e4fe 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -117,7 +117,7 @@ const char *zend_mh_bundle_error(void); # define ZEND_EXTENSIONS_SUPPORT 1 #elif defined(HAVE_MACH_O_DYLD_H) # define DL_LOAD(libname) zend_mh_bundle_load(libname) -# define DL_UNLOAD(handle) zend_mh_bundle_unload(handle) +# define DL_UNLOAD zend_mh_bundle_unload # define DL_FETCH_SYMBOL(h,s) zend_mh_bundle_symbol(h,s) # define DL_ERROR zend_mh_bundle_error # define DL_HANDLE void *