From: Richard Levitte Date: Thu, 12 Jun 2003 00:51:59 +0000 (+0000) Subject: Make sure DSO-dlfcn works properly on SunOS4. X-Git-Tag: OpenSSL_0_9_7c~80 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1b9f21fdc8644914f3b6495bda6f1b9ceefe236b;p=oweals%2Fopenssl.git Make sure DSO-dlfcn works properly on SunOS4. PR: 585 --- diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c index 906b4703de..9d49ebc253 100644 --- a/crypto/dso/dso_dlfcn.c +++ b/crypto/dso/dso_dlfcn.c @@ -125,7 +125,11 @@ DSO_METHOD *DSO_METHOD_dlfcn(void) # endif # endif #else -# define DLOPEN_FLAG RTLD_NOW /* Hope this works everywhere else */ +# ifdef OPENSSL_SYS_SUNOS +# define DLOPEN_FLAG 1 +# else +# define DLOPEN_FLAG RTLD_NOW /* Hope this works everywhere else */ +# endif #endif /* For this DSO_METHOD, our meth_data STACK will contain;