From 48cf57376d10f064f03fcfe5630c4a2855887061 Mon Sep 17 00:00:00 2001 From: AraHaan Date: Wed, 20 Dec 2017 12:17:21 -0500 Subject: [PATCH 1/3] bpo-32326: backport python.probs to 3.6. This will make python 3.6.x compile when only having the latest version of the Windows 10 SDK installed. Also a few other things was bumped as it was downloaded directly from master. --- PCbuild/python.props | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/PCbuild/python.props b/PCbuild/python.props index 16a7672315f246..39b7b8a6b6f35c 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -32,13 +32,13 @@ $(PySourcePath)\ - $(PySourcePath)PCBuild\win32\ + $(PySourcePath)PCbuild\win32\ $(Py_OutDir)\win32\ - $(PySourcePath)PCBuild\amd64\ + $(PySourcePath)PCbuild\amd64\ $(Py_OutDir)\amd64\ $(BuildPath32) $(BuildPath64) - $(PySourcePath)PCBuild\$(ArchName)\ + $(PySourcePath)PCbuild\$(ArchName)\ $(BuildPath)\ $(BuildPath)instrumented\ @@ -47,10 +47,11 @@ $(ExternalsDir)sqlite-3.21.0.0\ $(ExternalsDir)bzip2-1.0.6\ $(ExternalsDir)xz-5.2.2\ - $(ExternalsDir)openssl-1.0.2k\ - $(opensslDir)include32 - $(opensslDir)include64 + $(ExternalsDir)openssl-1.1.0f\ + $(ExternalsDir)openssl-bin-1.1.0f\$(ArchName)\ + $(opensslOutDir)include $(ExternalsDir)\nasm-2.11.06\ + $(ExternalsDir)\zlib-1.2.11\ _d @@ -64,7 +65,7 @@ $(BuildPath)python$(PyDebugExt).exe - + <_RegistryVersion>$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) <_RegistryVersion Condition="$(_RegistryVersion) == ''">$(Registry:HKEY_LOCAL_MACHINE\WOW6432Node\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) - 10.0.15063.0 + 10.0.16299.0 + 10.0.15063.0 10.0.14393.0 10.0.10586.0 10.0.10240.0 - + _d From 7662b2eaceaf3f53ae468f577c9002fe494b7527 Mon Sep 17 00:00:00 2001 From: AraHaan Date: Wed, 20 Dec 2017 13:23:55 -0500 Subject: [PATCH 3/3] bpo-32326: Add news entry. --- .../NEWS.d/next/Windows/2017-12-20-12-48-15.bpo-32326.hIm_oK.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Windows/2017-12-20-12-48-15.bpo-32326.hIm_oK.rst diff --git a/Misc/NEWS.d/next/Windows/2017-12-20-12-48-15.bpo-32326.hIm_oK.rst b/Misc/NEWS.d/next/Windows/2017-12-20-12-48-15.bpo-32326.hIm_oK.rst new file mode 100644 index 00000000000000..01b36def321221 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2017-12-20-12-48-15.bpo-32326.hIm_oK.rst @@ -0,0 +1 @@ +Compile with latest Windows 10 SDK on Windows if installed.