Make sure DSO-dlfcn works properly on SunOS4.

PR: 585
This commit is contained in:
Richard Levitte 2003-06-12 00:51:59 +00:00
parent f3031b106d
commit 1b9f21fdc8

View File

@ -125,7 +125,11 @@ DSO_METHOD *DSO_METHOD_dlfcn(void)
# endif # endif
# endif # endif
#else #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 #endif
/* For this DSO_METHOD, our meth_data STACK will contain; /* For this DSO_METHOD, our meth_data STACK will contain;