From: Ralf Habacker Date: Wed, 1 Jul 2026 13:22:17 +0000 (+0200) Subject: CI: update libexpat to version 2.8.2 to fix a cmake compatibility issue X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=272a2d0f420f198ea6ebe825f30c19f567c3e76b;p=thirdparty%2Fdbus.git CI: update libexpat to version 2.8.2 to fix a cmake compatibility issue The issue was: Compatibility with CMake < 3.5 has been removed from CMake. --- diff --git a/tools/docker/windows/Dockerfile b/tools/docker/windows/Dockerfile index 93cf6a57a..6d293eb6f 100644 --- a/tools/docker/windows/Dockerfile +++ b/tools/docker/windows/Dockerfile @@ -51,7 +51,7 @@ RUN C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --n # Upstream expat doesn't ship devel? let's build it then... # ADD https://github.com/libexpat/libexpat/releases/download/R_2_4_1/expat-win32bin-2.4.1.exe C:\TEMP\expat.exe # RUN C:\TEMP\expat.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- -RUN git clone --depth 1 --branch R_2_4_2 https://github.com/libexpat/libexpat +RUN git clone --depth 1 --branch R_2_8_2 https://github.com/libexpat/libexpat WORKDIR "/libexpat/expat" RUN cmake --install-prefix c:/ -G '"Visual Studio 15 2017"' -A x64 . RUN cmake --build . --config Release