From b1dc07509f78b354e83f5f4a902f1ff80c7bb05d Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Fri, 13 Apr 2018 17:30:34 -0700 Subject: [PATCH] bpo-33184: Update Windows installer to OpenSSL 1.1.0h (GH-6463) --- .../next/Windows/2018-04-13-11-28-55.bpo-33184.7YhqQE.rst | 1 + PCbuild/get_externals.bat | 4 ++-- PCbuild/python.props | 4 ++-- PCbuild/readme.txt | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 Misc/NEWS.d/next/Windows/2018-04-13-11-28-55.bpo-33184.7YhqQE.rst diff --git a/Misc/NEWS.d/next/Windows/2018-04-13-11-28-55.bpo-33184.7YhqQE.rst b/Misc/NEWS.d/next/Windows/2018-04-13-11-28-55.bpo-33184.7YhqQE.rst new file mode 100644 index 0000000000..ca47a98110 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2018-04-13-11-28-55.bpo-33184.7YhqQE.rst @@ -0,0 +1 @@ +Update Windows installer to use OpenSSL 1.1.0h. diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index 6d30751718..f4bde044cf 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -49,7 +49,7 @@ echo.Fetching external libraries... set libraries= set libraries=%libraries% bzip2-1.0.6 -if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.0f +if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.0h set libraries=%libraries% sqlite-3.21.0.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.8.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.8.0 @@ -72,7 +72,7 @@ for %%e in (%libraries%) do ( echo.Fetching external binaries... set binaries= -if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-1.1.0f +if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-1.1.0h if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.8.0 if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06 diff --git a/PCbuild/python.props b/PCbuild/python.props index f9433133a8..f7adaf47db 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -49,8 +49,8 @@ $(ExternalsDir)sqlite-3.21.0.0\ $(ExternalsDir)bzip2-1.0.6\ $(ExternalsDir)xz-5.2.2\ - $(ExternalsDir)openssl-1.1.0f\ - $(ExternalsDir)openssl-bin-1.1.0f\$(ArchName)\ + $(ExternalsDir)openssl-1.1.0h\ + $(ExternalsDir)openssl-bin-1.1.0h\$(ArchName)\ $(opensslOutDir)include $(ExternalsDir)\nasm-2.11.06\ $(ExternalsDir)\zlib-1.2.11\ diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index 6af38fbdd3..c847328611 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -165,7 +165,7 @@ _lzma Homepage: http://tukaani.org/xz/ _ssl - Python wrapper for version 1.0.2k of the OpenSSL secure sockets + Python wrapper for version 1.1.0h of the OpenSSL secure sockets library, which is downloaded from our binaries repository at https://github.com/python/cpython-bin-deps. -- 2.40.0