Skip to content

Commit 79f95c9

Browse files
authored
Merge pull request #8434 from radarhere/xz
Updated xz to 5.6.3
2 parents 84b167d + baf2d81 commit 79f95c9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/wheels-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ HARFBUZZ_VERSION=10.0.1
2020
LIBPNG_VERSION=1.6.44
2121
JPEGTURBO_VERSION=3.0.4
2222
OPENJPEG_VERSION=2.5.2
23-
XZ_VERSION=5.6.2
23+
XZ_VERSION=5.6.3
2424
TIFF_VERSION=4.6.0
2525
LCMS2_VERSION=2.16
2626
if [[ -n "$IS_MACOS" ]]; then

winbuild/build_prepare.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def cmd_msbuild(
119119
"LIBWEBP": "1.4.0",
120120
"OPENJPEG": "2.5.2",
121121
"TIFF": "4.6.0",
122-
"XZ": "5.6.2",
122+
"XZ": "5.6.3",
123123
"ZLIB": "1.3.1",
124124
}
125125
V["LIBPNG_DOTLESS"] = V["LIBPNG"].replace(".", "")
@@ -185,7 +185,7 @@ def cmd_msbuild(
185185
cmd_copy(r"src\liblzma\api\lzma\*.h", r"{inc_dir}\lzma"),
186186
],
187187
"headers": [r"src\liblzma\api\lzma.h"],
188-
"libs": [r"liblzma.lib"],
188+
"libs": [r"lzma.lib"],
189189
},
190190
"libwebp": {
191191
"url": f"http://downloads.webmproject.org/releases/webp/libwebp-{V['LIBWEBP']}.tar.gz",
@@ -216,8 +216,8 @@ def cmd_msbuild(
216216
"license": "LICENSE.md",
217217
"patch": {
218218
r"libtiff\tif_lzma.c": {
219-
# link against liblzma.lib
220-
"#ifdef LZMA_SUPPORT": '#ifdef LZMA_SUPPORT\n#pragma comment(lib, "liblzma.lib")', # noqa: E501
219+
# link against lzma.lib
220+
"#ifdef LZMA_SUPPORT": '#ifdef LZMA_SUPPORT\n#pragma comment(lib, "lzma.lib")', # noqa: E501
221221
},
222222
r"libtiff\tif_webp.c": {
223223
# link against libwebp.lib

0 commit comments

Comments
 (0)