diff options
Diffstat (limited to 'Zend/acconfig.h')
-rw-r--r-- | Zend/acconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/acconfig.h b/Zend/acconfig.h index a0df689fd0..e27c6d3adf 100644 --- a/Zend/acconfig.h +++ b/Zend/acconfig.h @@ -67,6 +67,9 @@ # if !defined(RTLD_NOW) && defined(DL_NOW) # define RTLD_NOW DL_NOW # endif +# if !defined(RTLD_NOW) && defined(DL_LAZY) +# define RTLD_NOW DL_LAZY +# endif # define DL_LOAD(libname) dlopen(libname, RTLD_NOW) # define DL_UNLOAD dlclose # define DL_FETCH_SYMBOL dlsym |