diff options
author | 2010-10-18 18:06:09 +0000 | |
---|---|---|
committer | 2010-10-18 18:06:09 +0000 | |
commit | 047cff1a64c0d819b72ddf4fcd92c662d948951f (patch) | |
tree | 49d676f5d5a24237452711b35b424963220a0ed6 /lib/libssl/src | |
parent | sync (diff) | |
download | wireguard-openbsd-047cff1a64c0d819b72ddf4fcd92c662d948951f.tar.xz wireguard-openbsd-047cff1a64c0d819b72ddf4fcd92c662d948951f.zip |
Disable use of dladdr() on a.out arches, they do not provide it (yet); ok djm@
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 5dceaf7b009..578a20d91d9 100644 --- a/lib/libssl/src/crypto/dso/dso_dlfcn.c +++ b/lib/libssl/src/crypto/dso/dso_dlfcn.c @@ -85,7 +85,7 @@ DSO_METHOD *DSO_METHOD_dlfcn(void) # define HAVE_DLINFO 1 # if defined(_AIX) || defined(__CYGWIN__) || \ defined(__SCO_VERSION__) || defined(_SCO_ELF) || \ - (defined(__OpenBSD__) && !defined(RTLD_SELF)) + (defined(__OpenBSD__) && (!defined(__ELF__) || !defined(RTLD_SELF))) # undef HAVE_DLINFO # endif #endif |