Make sure DSO-dlfcn works properly on SunOS4.
PR: 585
This commit is contained in:
parent
c14b337570
commit
54bbde3c3f
1 changed files with 5 additions and 1 deletions
|
@ -128,7 +128,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;
|
||||
|
|
Loading…
Reference in a new issue