2067da
--- php-5.4.0RC5/Zend/zend.h.dlopen	2012-01-18 17:10:33.972013835 +0100
2067da
+++ php-5.4.0RC5/Zend/zend.h	2012-01-18 17:12:39.175019492 +0100
2067da
@@ -90,11 +90,11 @@
2067da
 # endif
2067da
 
2067da
 # if defined(RTLD_GROUP) && defined(RTLD_WORLD) && defined(RTLD_PARENT)
2067da
-#  define DL_LOAD(libname)			dlopen(libname, RTLD_LAZY | RTLD_GLOBAL | RTLD_GROUP | RTLD_WORLD | RTLD_PARENT)
2067da
+#  define DL_LOAD(libname)			dlopen(libname, RTLD_NOW  | RTLD_GLOBAL | RTLD_GROUP | RTLD_WORLD | RTLD_PARENT)
2067da
 # elif defined(RTLD_DEEPBIND)
2067da
-#  define DL_LOAD(libname)			dlopen(libname, RTLD_LAZY | RTLD_GLOBAL | RTLD_DEEPBIND)
2067da
+#  define DL_LOAD(libname)			dlopen(libname, RTLD_NOW  | RTLD_GLOBAL | RTLD_DEEPBIND)
2067da
 # else
2067da
-#  define DL_LOAD(libname)			dlopen(libname, RTLD_LAZY | RTLD_GLOBAL)
2067da
+#  define DL_LOAD(libname)			dlopen(libname, RTLD_NOW  | RTLD_GLOBAL)
2067da
 # endif
2067da
 # define DL_UNLOAD					dlclose
2067da
 # if defined(DLSYM_NEEDS_UNDERSCORE)