summaryrefslogtreecommitdiffstats
path: root/php-7.1.3-dlopen.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-02-28 13:03:15 +0100
committerRemi Collet <fedora@famillecollet.com>2017-02-28 13:03:15 +0100
commitb9c8ca3b0b109e0e1c32ad47cc6ef2f3e200c54c (patch)
tree2478d11100e2a0b59989c576876e4fbe979ee9f8 /php-7.1.3-dlopen.patch
parent1b50f87d488a5080797544ca6be22c47b0d58212 (diff)
PHP 7.1.3RC1
Diffstat (limited to 'php-7.1.3-dlopen.patch')
-rw-r--r--php-7.1.3-dlopen.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/php-7.1.3-dlopen.patch b/php-7.1.3-dlopen.patch
new file mode 100644
index 0000000..cd35dc0
--- /dev/null
+++ b/php-7.1.3-dlopen.patch
@@ -0,0 +1,30 @@
+diff -up php-7.1.3RC1/sapi/litespeed/lsapilib.c.dlopen php-7.1.3RC1/sapi/litespeed/lsapilib.c
+--- php-7.1.3RC1/sapi/litespeed/lsapilib.c.dlopen 2017-02-28 10:12:34.000000000 +0100
++++ php-7.1.3RC1/sapi/litespeed/lsapilib.c 2017-02-28 10:23:11.384521740 +0100
+@@ -616,7 +616,7 @@ static int (*fp_lve_leave)(struct liblve
+ static int (*fp_lve_jail)( struct passwd *, char *) = NULL;
+ static int lsapi_load_lve_lib()
+ {
+- s_liblve = dlopen("liblve.so.0", RTLD_LAZY);
++ s_liblve = dlopen("liblve.so.0", RTLD_NOW);
+ if (s_liblve)
+ {
+ fp_lve_is_available = dlsym(s_liblve, "lve_is_available");
+diff -up php-7.1.3RC1/Zend/zend_portability.h.dlopen php-7.1.3RC1/Zend/zend_portability.h
+--- php-7.1.3RC1/Zend/zend_portability.h.dlopen 2017-02-28 10:23:11.384521740 +0100
++++ php-7.1.3RC1/Zend/zend_portability.h 2017-02-28 10:26:08.960308560 +0100
+@@ -146,11 +146,11 @@
+ # endif
+
+ # if defined(RTLD_GROUP) && defined(RTLD_WORLD) && defined(RTLD_PARENT)
+-# define DL_LOAD(libname) dlopen(libname, RTLD_LAZY | RTLD_GLOBAL | RTLD_GROUP | RTLD_WORLD | RTLD_PARENT)
++# define DL_LOAD(libname) dlopen(libname, RTLD_NOW | RTLD_GLOBAL | RTLD_GROUP | RTLD_WORLD | RTLD_PARENT)
+ # elif defined(RTLD_DEEPBIND) && !defined(__SANITIZE_ADDRESS__)
+-# define DL_LOAD(libname) dlopen(libname, RTLD_LAZY | RTLD_GLOBAL | RTLD_DEEPBIND)
++# define DL_LOAD(libname) dlopen(libname, RTLD_NOW | RTLD_GLOBAL | RTLD_DEEPBIND)
+ # else
+-# define DL_LOAD(libname) dlopen(libname, RTLD_LAZY | RTLD_GLOBAL)
++# define DL_LOAD(libname) dlopen(libname, RTLD_NOW | RTLD_GLOBAL)
+ # endif
+ # define DL_UNLOAD dlclose
+ # if defined(DLSYM_NEEDS_UNDERSCORE)