From 7d489002d691c18ed875b1857c4e940c1c78dc01 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 30 May 2003 04:07:31 +0300 Subject: [PATCH] Again RTLD_* fixes. --HG-- branch : HEAD --- src/auth/auth-module.c | 8 ++++++++ 1 file changed, 8 insertions(+) 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; -- 2.47.3