summaryrefslogtreecommitdiffstats
path: root/crypto/cast/cast_lcl.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-12-31 00:23:17 +0000
committerRichard Levitte <levitte@openssl.org>2000-12-31 00:23:17 +0000
commit26da3e65ac3ecf05c7567b0c62ee515814babf31 (patch)
tree3557bc2dd75f54f1727dc8bf7a2d96b1166e4cbf /crypto/cast/cast_lcl.h
parent21cd437886f448858e166c149f40604dfe6b7b7c (diff)
If OPENSSL_BUILD_SHLIBCRYPTO (for files that end up as libcrypto
objects) or OPENSSL_BUILD_SHLIBSSL (for files that end up as libssl objects) is defined, redefine OPENSSL_EXTERN to be OPENSSL_EXPORT. This is actually only important on Win32, and can safely be ignored in all other cases, at least for now.
Diffstat (limited to 'crypto/cast/cast_lcl.h')
-rw-r--r--crypto/cast/cast_lcl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/cast/cast_lcl.h b/crypto/cast/cast_lcl.h
index 5fab8a43f6..6bd25628d9 100644
--- a/crypto/cast/cast_lcl.h
+++ b/crypto/cast/cast_lcl.h
@@ -63,6 +63,11 @@
#include "openssl/e_os.h" /* OPENSSL_EXTERN */
+#ifdef OPENSSL_BUILD_SHLIBCRYPTO
+# undef OPENSSL_EXTERN
+# define OPENSSL_EXTERN OPENSSL_EXPORT
+#endif
+
#undef c2l
#define c2l(c,l) (l =((unsigned long)(*((c)++))) , \
l|=((unsigned long)(*((c)++)))<< 8L, \