]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Again RTLD_* fixes.
authorTimo Sirainen <tss@iki.fi>
Fri, 30 May 2003 01:07:31 +0000 (04:07 +0300)
committerTimo Sirainen <tss@iki.fi>
Fri, 30 May 2003 01:07:31 +0000 (04:07 +0300)
--HG--
branch : HEAD

src/auth/auth-module.c

index 9077aa7973f269871b86e2a455443fa16b2a973e..4fce25beb7f14e8a1cf9cd54340f08b0fec36489 100644 (file)
@@ -9,6 +9,14 @@
 #include <sys/stat.h>
 #include <dlfcn.h>
 
+#ifndef RTLD_GLOBAL
+#  define RTLD_GLOBAL 0
+#endif
+
+#ifndef RTLD_NOW
+#  define RTLD_NOW 0
+#endif
+
 struct auth_module {
        struct auth_module *next;