From: Timo Sirainen Date: Fri, 30 May 2003 01:07:31 +0000 (+0300) Subject: Again RTLD_* fixes. X-Git-Tag: 1.1.alpha1~4580 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d489002d691c18ed875b1857c4e940c1c78dc01;p=thirdparty%2Fdovecot%2Fcore.git Again RTLD_* fixes. --HG-- branch : HEAD --- diff --git a/src/auth/auth-module.c b/src/auth/auth-module.c index 9077aa7973..4fce25beb7 100644 --- a/src/auth/auth-module.c +++ b/src/auth/auth-module.c @@ -9,6 +9,14 @@ #include #include +#ifndef RTLD_GLOBAL +# define RTLD_GLOBAL 0 +#endif + +#ifndef RTLD_NOW +# define RTLD_NOW 0 +#endif + struct auth_module { struct auth_module *next;