This commit is contained in:
Zeev Suraski 2002-08-13 15:14:45 +00:00
parent 4feff54879
commit 88d3154b68

View File

@ -104,7 +104,7 @@ const char *zend_mh_bundle_error(void);
# define DL_LOAD(libname) dlopen(libname, RTLD_LAZY | RTLD_GLOBAL)
# define DL_UNLOAD dlclose
# if defined(DLSYM_NEEDS_UNDERSCORE)
# define DL_FETCH_SYMBOL(h,s) dlsym((h), "_" ## s)
# define DL_FETCH_SYMBOL(h,s) dlsym((h), "_" s)
# else
# define DL_FETCH_SYMBOL dlsym
# endif