16 lines
469 B
Diff
16 lines
469 B
Diff
|
|
Conflicting e.g. libldap vs libldap_r problems still exist
|
|
inside httpd. Use RTLD_DEEPBIND by default.
|
|
|
|
--- apr-1.7.0/dso/unix/dso.c.deepbind
|
|
+++ apr-1.7.0/dso/unix/dso.c
|
|
@@ -123,7 +123,7 @@
|
|
void *os_handle = dlopen((char *)path, RTLD_NOW | RTLD_GLOBAL);
|
|
|
|
#else
|
|
- int flags = RTLD_NOW | RTLD_GLOBAL;
|
|
+ int flags = RTLD_NOW | RTLD_GLOBAL | RTLD_DEEPBIND;
|
|
void *os_handle;
|
|
#ifdef _AIX
|
|
if (strchr(path + 1, '(') && path[strlen(path) - 1] == ')')
|