From 8ce55bab6c97eae2897f288ba5c5ff9c3023c0e9 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sat, 15 Jan 2022 12:10:06 +0000 Subject: [PATCH] tools/build_and_install_smpq.sh: Bump StormLib Includes https://github.com/ladislav-zezula/StormLib/commit/a5ef7a850aac844abf2e3859e26617ed596d4624, which should fix issues on some platforms. Refs #3930 --- tools/build_and_install_smpq.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build_and_install_smpq.sh b/tools/build_and_install_smpq.sh index 7668d29e..ff2c0da2 100755 --- a/tools/build_and_install_smpq.sh +++ b/tools/build_and_install_smpq.sh @@ -9,7 +9,7 @@ set -ex PARALLELISM="$(getconf _NPROCESSORS_ONLN)" -STORMLIB_VERSION=9.23 +STORMLIB_VERSION=8bb328df98e90be08a45a9f6aeb8edda5c1fd27c STORMLIB_SRC="/tmp/stormlib-src-$STORMLIB_VERSION" SMPQ_VERSION=1.6 SMPQ_SRC="/tmp/smpq-src-$SMPQ_VERSION" @@ -17,7 +17,7 @@ SMPQ_SRC="/tmp/smpq-src-$SMPQ_VERSION" # Download, build, and install the static version of StormLib, an SMPQ dependency, to the staging prefix. if ! [ -d "$STORMLIB_SRC" ]; then mkdir "$STORMLIB_SRC" - curl -L -s "https://github.com/ladislav-zezula/StormLib/tarball/v${STORMLIB_VERSION}" | tar -C "$STORMLIB_SRC" --strip-components=1 -xvzf - + curl -L -s "https://github.com/ladislav-zezula/StormLib/archive/${STORMLIB_VERSION}.tar.gz" | tar -C "$STORMLIB_SRC" --strip-components=1 -xvzf - fi cmake -S"$STORMLIB_SRC" -B"$STORMLIB_SRC"/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/tmp/smpq-staging -DBUILD_SHARED_LIBS=OFF \