diff options
author | Zachary Ware <zach@python.org> | 2024-02-01 23:54:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-01 23:54:02 (GMT) |
commit | 618d7256e78da8200f6e2c6235094a1ef885dca4 (patch) | |
tree | cb9d3855e0eb16f240aec6b633b1c8f193186b7b /PCbuild | |
parent | 13907968d73b3b602c81e240fb7892a2627974d6 (diff) | |
download | cpython-618d7256e78da8200f6e2c6235094a1ef885dca4.zip cpython-618d7256e78da8200f6e2c6235094a1ef885dca4.tar.gz cpython-618d7256e78da8200f6e2c6235094a1ef885dca4.tar.bz2 |
gh-111239: Update Windows build to use zlib 1.3.1 (GH-114877)
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 3919c05..de73d92 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -58,7 +58,7 @@ set libraries=%libraries% sqlite-3.44.2.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.13.1 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.13.1 set libraries=%libraries% xz-5.2.5 -set libraries=%libraries% zlib-1.2.13 +set libraries=%libraries% zlib-1.3.1 for %%e in (%libraries%) do ( if exist "%EXTERNALS_DIR%\%%e" ( diff --git a/PCbuild/python.props b/PCbuild/python.props index e879608..2cb1669 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -78,7 +78,7 @@ <opensslOutDir Condition="$(opensslOutDir) == ''">$(ExternalsDir)openssl-bin-3.0.11\$(ArchName)\</opensslOutDir> <opensslIncludeDir Condition="$(opensslIncludeDir) == ''">$(opensslOutDir)include</opensslIncludeDir> <nasmDir Condition="$(nasmDir) == ''">$(ExternalsDir)\nasm-2.11.06\</nasmDir> - <zlibDir Condition="$(zlibDir) == ''">$(ExternalsDir)\zlib-1.2.13\</zlibDir> + <zlibDir Condition="$(zlibDir) == ''">$(ExternalsDir)\zlib-1.3.1\</zlibDir> </PropertyGroup> <PropertyGroup> |