diff options
author | 2012-10-22 17:11:37 +0000 | |
---|---|---|
committer | 2012-10-22 17:11:37 +0000 | |
commit | dd083cfa9009ab00b7497cc136e66b89892f3f70 (patch) | |
tree | 0d40398e83b5ec3b3e3e1f77a0c532781929b336 /lib/libssl/src | |
parent | tweak previous; (diff) | |
download | wireguard-openbsd-dd083cfa9009ab00b7497cc136e66b89892f3f70.tar.xz wireguard-openbsd-dd083cfa9009ab00b7497cc136e66b89892f3f70.zip |
Restore r1.10, lost during last update:
Disable use of dladdr() on a.out arches, they do not provide it (yet);
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/dso/dso_dlfcn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/dso/dso_dlfcn.c b/lib/libssl/src/crypto/dso/dso_dlfcn.c index 5f351b318dd..e21b9f6dbc2 100644 --- a/lib/libssl/src/crypto/dso/dso_dlfcn.c +++ b/lib/libssl/src/crypto/dso/dso_dlfcn.c @@ -86,7 +86,7 @@ DSO_METHOD *DSO_METHOD_dlfcn(void) # if defined(_AIX) || defined(__CYGWIN__) || \ defined(__SCO_VERSION__) || defined(_SCO_ELF) || \ (defined(__osf__) && !defined(RTLD_NEXT)) || \ - (defined(__OpenBSD__) && !defined(RTLD_SELF)) || \ + (defined(__OpenBSD__) && (!defined(__ELF__) || !defined(RTLD_SELF))) || \ defined(__ANDROID__) # undef HAVE_DLINFO # endif |