bpo-35926: Update Windows build to OpenSSL 1.1.1b by zooba · Pull Request #13323 · python/cpython

@@ -1,37 +1,21 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="PGInstrument|Win32"> <Configuration>PGInstrument</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="PGInstrument|x64"> <Configuration>PGInstrument</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="PGUpdate|Win32"> <Configuration>PGUpdate</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="PGUpdate|x64"> <Configuration>PGUpdate</Configuration> <ProjectConfiguration Include="Release|x64"> <Configuration>Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Debug|x64"> <Configuration>Debug</Configuration> <Platform>x64</Platform> <ProjectConfiguration Include="Release|ARM"> <Configuration>Release</Configuration> <Platform>ARM</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|x64"> <ProjectConfiguration Include="Release|ARM64"> <Configuration>Release</Configuration> <Platform>x64</Platform> <Platform>ARM64</Platform> </ProjectConfiguration> </ItemGroup> <PropertyGroup Label="Globals"> Expand All @@ -40,15 +24,36 @@
<Import Project="python.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Label="Configuration">
<PropertyGroup Label="Configuration" Condition="$(Platform) == 'Win32'"> <ConfigurationType>Makefile</ConfigurationType> <Bitness>32</Bitness> <Bitness Condition="$(Platform) == 'x64'">64</Bitness> <ArchName>x86</ArchName> <ArchName Condition="$(Platform) == 'x64'">amd64</ArchName> <OpenSSLPlatform>VC-WIN32</OpenSSLPlatform> <OpenSSLPlatform Condition="$(Platform) == 'x64'">VC-WIN64A</OpenSSLPlatform> <SupportSigning>true</SupportSigning> </PropertyGroup>
<PropertyGroup Label="Configuration" Condition="$(Platform) == 'x64'"> <ConfigurationType>Makefile</ConfigurationType> <Bitness>64</Bitness> <ArchName>amd64</ArchName> <OpenSSLPlatform>VC-WIN64A-masm</OpenSSLPlatform> <SupportSigning>true</SupportSigning> </PropertyGroup>
<PropertyGroup Label="Configuration" Condition="$(Platform) == 'ARM'"> <ConfigurationType>Makefile</ConfigurationType> <Bitness>ARM</Bitness> <ArchName>ARM</ArchName> <OpenSSLPlatform>VC-WIN32-ARM</OpenSSLPlatform> <SupportSigning>true</SupportSigning> </PropertyGroup>
<PropertyGroup Label="Configuration" Condition="$(Platform) == 'ARM64'"> <ConfigurationType>Makefile</ConfigurationType> <Bitness>ARM64</Bitness> <ArchName>ARM64</ArchName> <OpenSSLPlatform>VC-WIN64-ARM</OpenSSLPlatform> <SupportSigning>true</SupportSigning> </PropertyGroup>
Expand Down