prbinu / tls-scan

An Internet scale, blazing fast SSL/TLS scanner ( non-blocking, event-driven )
https://prbinu.github.io/tls-scan
Other
283 stars 54 forks source link

zlib-1.2.13 not available #59

Closed jrhunger closed 11 months ago

jrhunger commented 11 months ago

Following docker build instructions and the build failed due to http://zlib.net/zlib-1.2.13.tar.gz returning 404. Making the below zlib version change to 1.3 allowed the build to complete, and seems functional.

diff --git a/bootstrap.sh b/bootstrap.sh
index 1cb8210..5029be6 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -45,7 +45,7 @@ export PKG_CONFIG_PATH=${OUTDIR}/lib/pkgconfig

 OPENSSL_VERSION="1.0.2-chacha"
 LIBEVENT_VERSION="2.1.8-stable"
-ZLIB_VERSION="zlib-1.2.13"
+ZLIB_VERSION="zlib-1.3"
prbinu commented 11 months ago

Thank you for sharing the patch; fixed in 1.5.2 release.