summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-09-12 17:32:05 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-09-13 13:55:46 -0700
commit605ce56ea226c629d3e6a8ba304799655a0b1140 (patch)
tree93b08c3db192c9102fd39598698d34538dc00943 /scripts
parentefdff9fd87d8a4789c32de4cd12e4b51a1da03e1 (diff)
downloadsubsurface-605ce56ea226c629d3e6a8ba304799655a0b1140.tar.gz
build-system: add zlib as library we know how to fetch
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get-dep-lib.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/get-dep-lib.sh b/scripts/get-dep-lib.sh
index 870b86ef7..481a0b48a 100755
--- a/scripts/get-dep-lib.sh
+++ b/scripts/get-dep-lib.sh
@@ -2,6 +2,7 @@
#
# set version of 3rd party libraries
+CURRENT_LIBZ="v1.2.11"
CURRENT_LIBZIP="rel-1-5-1"
CURRENT_LIBGIT2="v0.26.0"
CURRENT_HIDAPI="hidapi-0.7.0"
@@ -177,6 +178,9 @@ for package in "${PACKAGES[@]}" ; do
openssl)
git_checkout_library openssl $CURRENT_OPENSSL https://github.com/openssl/openssl.git
;;
+ libz)
+ git_checkout_library libz $CURRENT_LIBZ https://github.com/madler/zlib.git
+ ;;
libzip)
git_checkout_library libzip $CURRENT_LIBZIP https://github.com/nih-at/libzip.git
;;