summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2018-12-11 03:52:51 (GMT)
committerGitHub <noreply@github.com>2018-12-11 03:52:51 (GMT)
commit309d7207f691b3eaa988d2293b9d023943982a9f (patch)
treed0b13458a5b8a63f68cad5731df3ae2591cae8e8
parentb1f98d4c723f746cea9447d7fd9e341ee8da1371 (diff)
downloadcpython-309d7207f691b3eaa988d2293b9d023943982a9f.zip
cpython-309d7207f691b3eaa988d2293b9d023943982a9f.tar.gz
cpython-309d7207f691b3eaa988d2293b9d023943982a9f.tar.bz2
bpo-35401: Updates Windows build to OpenSSL 1.0.2q (GH-11089)
-rw-r--r--Misc/NEWS.d/next/Windows/2018-12-10-15-01-13.bpo-35401.9L1onG.rst1
-rw-r--r--PCbuild/get_externals.bat2
-rw-r--r--PCbuild/libeay.vcxproj3
-rw-r--r--PCbuild/python.props2
4 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS.d/next/Windows/2018-12-10-15-01-13.bpo-35401.9L1onG.rst b/Misc/NEWS.d/next/Windows/2018-12-10-15-01-13.bpo-35401.9L1onG.rst
new file mode 100644
index 0000000..a804473
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2018-12-10-15-01-13.bpo-35401.9L1onG.rst
@@ -0,0 +1 @@
+Updates Windows build to OpenSSL 1.0.2q
diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat
index aff4478..016ecdd 100644
--- a/PCbuild/get_externals.bat
+++ b/PCbuild/get_externals.bat
@@ -41,7 +41,7 @@ echo.Fetching external libraries...
set libraries=
set libraries=%libraries% bzip2-1.0.6
-if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2p
+if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2q
set libraries=%libraries% sqlite-3.21.0.0
if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tcl-core-8.6.6.0
if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tk-8.6.6.0
diff --git a/PCbuild/libeay.vcxproj b/PCbuild/libeay.vcxproj
index 9662cd4..31591bc 100644
--- a/PCbuild/libeay.vcxproj
+++ b/PCbuild/libeay.vcxproj
@@ -533,6 +533,7 @@
<!--
<ClCompile Include="$(opensslDir)crypto\fips_ers.c" />
-->
+ <ClCompile Include="$(opensslDir)crypto\getenv.c" />
<ClCompile Include="$(opensslDir)crypto\hmac\hm_ameth.c" />
<ClCompile Include="$(opensslDir)crypto\hmac\hm_pmeth.c" />
<ClCompile Include="$(opensslDir)crypto\hmac\hmac.c" />
@@ -725,9 +726,7 @@
<ClCompile Include="$(opensslDir)crypto\ui\ui_lib.c" />
<ClCompile Include="$(opensslDir)crypto\ui\ui_openssl.c" />
<ClCompile Include="$(opensslDir)crypto\ui\ui_util.c" />
- <!--
<ClCompile Include="$(opensslDir)crypto\uid.c" />
- -->
<ClCompile Include="$(opensslDir)crypto\whrlpool\wp_dgst.c" />
<ClCompile Include="$(opensslDir)crypto\x509\by_dir.c" />
<ClCompile Include="$(opensslDir)crypto\x509\by_file.c" />
diff --git a/PCbuild/python.props b/PCbuild/python.props
index b29669b..3022ca5 100644
--- a/PCbuild/python.props
+++ b/PCbuild/python.props
@@ -49,7 +49,7 @@
<sqlite3Dir>$(ExternalsDir)sqlite-3.21.0.0\</sqlite3Dir>
<bz2Dir>$(ExternalsDir)bzip2-1.0.6\</bz2Dir>
<lzmaDir>$(ExternalsDir)xz-5.2.2\</lzmaDir>
- <opensslDir>$(ExternalsDir)openssl-1.0.2p\</opensslDir>
+ <opensslDir>$(ExternalsDir)openssl-1.0.2q\</opensslDir>
<opensslIncludeDir>$(opensslDir)include32</opensslIncludeDir>
<opensslIncludeDir Condition="'$(ArchName)' == 'amd64'">$(opensslDir)include64</opensslIncludeDir>
<nasmDir>$(ExternalsDir)\nasm-2.11.06\</nasmDir>