From 5a6af5f5ab39decc6878c53c7817cb4d26d882dc Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 11 Apr 2022 17:47:17 +0200 Subject: [PATCH] Use the last version of zlib on Windows. The `zlib-1.2.12.meson.zip` is the composition of the official `zlib.1.2.12.zip` archive and the meson wrabdb "patch" https://wrapdb.mesonbuild.com/v2/zlib_1.2.12-1/get_patch as described in https://wrapdb.mesonbuild.com/v2/zlib_1.2.12-1/zlib.wrap --- appveyor/install_zlib.cmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor/install_zlib.cmd b/appveyor/install_zlib.cmd index 2e1a00b..cae599a 100644 --- a/appveyor/install_zlib.cmd +++ b/appveyor/install_zlib.cmd @@ -1,8 +1,8 @@ REM ======================================================== REM Install zlib -curl -fsSL -O http://public.kymeria.fr/KIWIX/windows/zlib-1.2.11.meson.zip || exit /b 1 -7z x zlib-1.2.11.meson.zip || exit /b 1 -cd zlib-1.2.11 +curl -fsSL -O http://mirror.download.kiwix.org/dev/zlib-1.2.12.meson.zip || exit /b 1 +7z x zlib-1.2.12.meson.zip || exit /b 1 +cd zlib-1.2.12 meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1 cd build ninja || exit /b 1