owt-server
owt-server copied to clipboard
Zlib 404 not found.
diff --git a/scripts/installCommonDeps.sh b/scripts/installCommonDeps.sh
index c1b76abb..60291817 100644
--- a/scripts/installCommonDeps.sh
+++ b/scripts/installCommonDeps.sh
@@ -114,7 +114,7 @@ install_zlib() {
pushd $LIB_DIR >/dev/null
rm -rf zlib-*
rm -f ./build/lib/zlib.*
- wget -c https://zlib.net/zlib-${VERSION}.tar.gz
+ wget -c https://github.com/madler/zlib/releases/download/v1.2.13/zlib-${VERSION}.tar.gz
tar -zxf zlib-${VERSION}.tar.gz
pushd zlib-${VERSION} >/dev/null
./configure --prefix=$PREFIX_DIR
@@ -601,7 +601,7 @@ install_usrsctp() {
cd usrsctp
./bootstrap
- ./configure --prefix=$PREFIX_DIR
+ ./configure --prefix=$PREFIX_DIR
make && make install
else
mkdir -p $LIB_DIR
Yes, we need to add the zlib release location manually as zlib has been moved recently.