diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-08-15 20:29:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-15 20:29:39 (GMT) |
commit | eeca87cf3ce5b866dbb210548e23ee91ec5411f2 (patch) | |
tree | 32b093e88815f56f6f6a3960606dcc783a560ec4 /PCbuild | |
parent | 5e9551b4090095fa94cc2dd4afa5bd2177aa3d09 (diff) | |
download | cpython-eeca87cf3ce5b866dbb210548e23ee91ec5411f2.zip cpython-eeca87cf3ce5b866dbb210548e23ee91ec5411f2.tar.gz cpython-eeca87cf3ce5b866dbb210548e23ee91ec5411f2.tar.bz2 |
bpo-34405: Updated to OpenSSL 1.0.2p for Windows builds. (GH-8776)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/get_externals.bat | 2 | ||||
-rw-r--r-- | PCbuild/python.props | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index cea2068..aff4478 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.2o +if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2p 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/python.props b/PCbuild/python.props index 8c398a1..570f7fa 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.2o\</opensslDir> + <opensslDir>$(ExternalsDir)openssl-1.0.2p\</opensslDir> <opensslIncludeDir>$(opensslDir)include32</opensslIncludeDir> <opensslIncludeDir Condition="'$(ArchName)' == 'amd64'">$(opensslDir)include64</opensslIncludeDir> <nasmDir>$(ExternalsDir)\nasm-2.11.06\</nasmDir> |