Support for systems where RTLD_LAZY_GLOBAL is defined instead of
authorDaniel Stenberg <daniel@haxx.se>
Tue, 9 May 2000 22:23:55 +0000 (22:23 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 9 May 2000 22:23:55 +0000 (22:23 +0000)
RTLD_GLOBAL and RTLD_LAZY separately.

lib/ldap.c

index 7f0e025..dde1587 100644 (file)
@@ -89,7 +89,13 @@ static void DynaOpen(void)
      * liblber.so automatically, but since it does not we will
      * handle it here by opening liblber.so as global.
      */
-    dlopen("liblber.so", RTLD_LAZY | RTLD_GLOBAL);
+    dlopen("liblber.so",
+#ifdef RTLD_LAZY_GLOBAL /* It turns out some systems use this: */
+           RTLD_LAZY_GLOBAL
+#else
+           RTLD_LAZY | RTLD_GLOBAL
+#endif
+           );
     libldap = dlopen("libldap.so", RTLD_LAZY);
   }
 #endif