From ecaa105df72b216a182fdd43869f1076bf6f8d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Tue, 12 Aug 2025 18:39:26 +0200 Subject: [PATCH] Do not use bundlded zlib in LibXISF --- build-soft-latest.sh | 2 +- build-soft-stable.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-soft-latest.sh b/build-soft-latest.sh index 946f36b..9af7ca8 100755 --- a/build-soft-latest.sh +++ b/build-soft-latest.sh @@ -30,7 +30,7 @@ cd "$ROOTDIR" [ ! -d "libXISF" ] && { git clone https://gitea.nouspiro.space/nou/libXISF.git || { echo "Failed to clone LibXISF"; exit 1; } } cd libXISF git pull origin -[ ! -d ../build-libXISF ] && { cmake -B ../build-libXISF ../libXISF -DCMAKE_BUILD_TYPE=Release || { echo "LibXISF configuration failed"; exit 1; } } +[ ! -d ../build-libXISF ] && { cmake -B ../build-libXISF ../libXISF -DCMAKE_BUILD_TYPE=Release -DUSE_BUNDLED_ZLIB=OFF || { echo "LibXISF configuration failed"; exit 1; } } cd ../build-libXISF make -j $JOBS || { echo "LibXISF compilation failed"; exit 1; } sudo make install || { echo "LibXISF installation failed"; exit 1; } diff --git a/build-soft-stable.sh b/build-soft-stable.sh index 61d26da..c630399 100755 --- a/build-soft-stable.sh +++ b/build-soft-stable.sh @@ -37,7 +37,7 @@ cd "$ROOTDIR" cd libXISF git fetch origin git switch -d --discard-changes $LIBXISF_COMMIT -[ ! -d ../build-libXISF ] && { cmake -B ../build-libXISF ../libXISF -DCMAKE_BUILD_TYPE=Release || { echo "LibXISF configuration failed"; exit 1; } } +[ ! -d ../build-libXISF ] && { cmake -B ../build-libXISF ../libXISF -DCMAKE_BUILD_TYPE=Release -DUSE_BUNDLED_ZLIB=OFF || { echo "LibXISF configuration failed"; exit 1; } } cd ../build-libXISF make -j $JOBS || { echo "LibXISF compilation failed"; exit 1; } sudo make install || { echo "LibXISF installation failed"; exit 1; }