summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-07-25 23:45:49 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-07-25 23:45:49 +0000
commitd1697a7556db3f4e8be95957cb0c72b376300703 (patch)
tree653f2232494eaafb2d2e45664d1a7c26845681a6 /crypto/engine
parentc8c6e9ecd92a9d02a317999a2d5409b4216f2d50 (diff)
Disable rsax for Windows: it doesn't currently work.
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_rsax.c3
1 files changed, 2 insertions, 1 deletions
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