1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 12:41:29 +00:00

Don't make libz support contingent on libssh2, since http.lua uses it now

This commit is contained in:
dmiller
2019-05-24 18:28:49 +00:00
parent 0ffdd07894
commit bbdac0e8fe
2 changed files with 0 additions and 10 deletions

5
configure vendored
View File

@@ -6574,11 +6574,6 @@ fi
have_libz="no" have_libz="no"
requested_included_libz="no" requested_included_libz="no"
test "${with_libz+set}" != "set" && with_libz="yes" test "${with_libz+set}" != "set" && with_libz="yes"
# For now, libz is a libssh2 dependency.
# If we end up using it for something else, we'll have to change this line.
if test "x${with_libssh2}" = "xno"; then
with_libz=no
fi
# Check whether --with-libz was given. # Check whether --with-libz was given.

View File

@@ -564,11 +564,6 @@ AC_SUBST(PCRE_DIST_CLEAN)
have_libz="no" have_libz="no"
requested_included_libz="no" requested_included_libz="no"
test "${with_libz+set}" != "set" && with_libz="yes" test "${with_libz+set}" != "set" && with_libz="yes"
# For now, libz is a libssh2 dependency.
# If we end up using it for something else, we'll have to change this line.
if test "x${with_libssh2}" = "xno"; then
with_libz=no
fi
AC_ARG_WITH(libz, AC_ARG_WITH(libz,
AC_HELP_STRING([--with-libz=DIR], [Use specific copy of libz]) AC_HELP_STRING([--with-libz=DIR], [Use specific copy of libz])