diff options
author | Richard Levitte <levitte@openssl.org> | 2000-12-31 01:23:17 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-12-31 01:23:17 +0100 |
commit | 26da3e65ac3ecf05c7567b0c62ee515814babf31 (patch) | |
tree | 3557bc2dd75f54f1727dc8bf7a2d96b1166e4cbf /crypto/des/des_ver.h | |
parent | Define OPENSSL_EXPORT and OPENSSL_IMPORT and give OPENSSL_EXTERN the (diff) | |
download | openssl-26da3e65ac3ecf05c7567b0c62ee515814babf31.tar.xz openssl-26da3e65ac3ecf05c7567b0c62ee515814babf31.zip |
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/des/des_ver.h')
-rw-r--r-- | crypto/des/des_ver.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/des/des_ver.h b/crypto/des/des_ver.h index de3c02f110..0fa94d5368 100644 --- a/crypto/des/des_ver.h +++ b/crypto/des/des_ver.h @@ -57,5 +57,11 @@ */ #include <openssl/e_os2.h> + +#ifdef OPENSSL_BUILD_SHLIBCRYPTO +# undef OPENSSL_EXTERN +# define OPENSSL_EXTERN OPENSSL_EXPORT +#endif + OPENSSL_EXTERN char *DES_version; /* SSLeay version string */ OPENSSL_EXTERN char *libdes_version; /* old libdes version string */ |