diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-05-14 04:44:02 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-05-14 04:44:02 (GMT) |
commit | c8241cfb8c967d2406cf5abfd34c6ed7c770c2d6 (patch) | |
tree | 12d28cec340582e271e4af09de2e737b31f0d465 | |
parent | 08e5300afc9b677ea4222a7490ac7e3fa02b35bf (diff) | |
download | cpython-c8241cfb8c967d2406cf5abfd34c6ed7c770c2d6.zip cpython-c8241cfb8c967d2406cf5abfd34c6ed7c770c2d6.tar.gz cpython-c8241cfb8c967d2406cf5abfd34c6ed7c770c2d6.tar.bz2 |
Issue #24186: Disable optimised OpenSSL functions on 64-bit Windows to avoid crashing.
-rw-r--r-- | PCbuild/openssl.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props index 258db05..d4ef7ac 100644 --- a/PCbuild/openssl.props +++ b/PCbuild/openssl.props @@ -17,7 +17,6 @@ <PreprocessorDefinitions Include="OPENSSL_THREADS" /> <PreprocessorDefinitions Include="OPENSSL_SYSNAME_WIN32" /> <PreprocessorDefinitions Include="OPENSSL_IA32_SSE2" /> - <PreprocessorDefinitions Include="OPENSSL_BN_ASM_GF2m" /> <PreprocessorDefinitions Include="OPENSSL_CPUID_OBJ" /> <PreprocessorDefinitions Include="SHA1_ASM" /> <PreprocessorDefinitions Include="SHA256_ASM" /> @@ -38,6 +37,7 @@ <PreprocessorDefinitions Include="OPENSSL_NO_DYNAMIC_ENGINE" /> </ItemGroup> <ItemGroup Condition="'$(Platform)'=='Win32'"> + <PreprocessorDefinitions Include="OPENSSL_BN_ASM_GF2m" /> <PreprocessorDefinitions Include="OPENSSL_BN_ASM_PART_WORDS" /> <PreprocessorDefinitions Include="OPENSSL_BN_ASM_MONT" /> <PreprocessorDefinitions Include="RMD160_ASM" /> |