diff options
author | Andy Polyakov <appro@openssl.org> | 2004-11-23 09:06:12 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2004-11-23 09:06:12 +0000 |
commit | 959f9b11582f5d320989815052dd0f1239320f19 (patch) | |
tree | 892c7c7d9ca13c274ff60fefa8b5d1a729eaf074 /crypto/cryptlib.c | |
parent | 376729e1301f82a8f20ce78f36b7107c75720a7c (diff) | |
download | openssl-new-959f9b11582f5d320989815052dd0f1239320f19.tar.gz |
linux-x86_64 didn't link after EM64T RC4 tune-up...
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r-- | crypto/cryptlib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 517678dbd4..3cfcb9e602 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -539,7 +539,9 @@ const char *CRYPTO_get_lock_name(int type) return(sk_value(app_locks,type-CRYPTO_NUM_LOCKS)); } -#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__INTEL__) +#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \ + defined(__INTEL__) || \ + defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) unsigned long OPENSSL_ia32cap_P=0; unsigned long *OPENSSL_ia32cap_loc(void) { return &OPENSSL_ia32cap_P; } |