summaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2010-03-29 09:50:33 +0000
committerAndy Polyakov <appro@openssl.org>2010-03-29 09:50:33 +0000
commitc0ed5cd47bebc489053e1121f0b58320704db452 (patch)
treedbb9dfd0af3f1d6ae8874a162de2a60a0075e761 /crypto/dso
parentc8281fd38ee5b409f3975fc8d49ac3162915318b (diff)
dso_dlfcn.c: fix compile failure on Tru64 [from HEAD].
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_dlfcn.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c
index 7da3f78928..14bd322fb8 100644
--- a/crypto/dso/dso_dlfcn.c
+++ b/crypto/dso/dso_dlfcn.c
@@ -78,6 +78,9 @@ DSO_METHOD *DSO_METHOD_dlfcn(void)
#else
#ifdef HAVE_DLFCN_H
+# ifdef __osf__
+# define __EXTENSIONS__
+# endif
# include <dlfcn.h>
# define HAVE_DLINFO 1
# if defined(_AIX) || defined(__CYGWIN__) || \