From: Dr. Stephen Henson Date: Mon, 25 Jul 2011 23:45:49 +0000 (+0000) Subject: Disable rsax for Windows: it doesn't currently work. X-Git-Tag: OpenSSL_1_0_1-beta1~192 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d1697a7556db3f4e8be95957cb0c72b376300703;hp=c8c6e9ecd92a9d02a317999a2d5409b4216f2d50;p=oweals%2Fopenssl.git Disable rsax for Windows: it doesn't currently work. --- diff --git a/crypto/engine/eng_rsax.c b/crypto/engine/eng_rsax.c index 72185d686b..82952356a5 100644 --- a/crypto/engine/eng_rsax.c +++ b/crypto/engine/eng_rsax.c @@ -79,7 +79,8 @@ #undef COMPILE_RSAX #if (defined(__x86_64) || defined(__x86_64__) || \ - defined(_M_AMD64) || defined (_M_X64)) && !defined(OPENSSL_NO_ASM) + defined(_M_AMD64) || defined (_M_X64)) && !defined(OPENSSL_NO_ASM) && \ + !defined(OPENSSL_SYS_WIN32) #define COMPILE_RSAX static ENGINE *ENGINE_rsax (void); #endif