Print warning if OpenSSL is not found but not explicitely disabled

This commit is contained in:
gio 2015-07-09 08:48:18 +00:00
parent b99e76ec60
commit b705866220
2 changed files with 8 additions and 0 deletions

4
configure vendored
View file

@ -9255,3 +9255,7 @@ fi
echo " NMAP IS A POWERFUL TOOL -- USE CAREFULLY AND RESPONSIBLY"
echo "Configuration complete. Type make (or gmake on some *BSD machines) to compile."
if test "$use_openssl" = "no" && test "$with_openssl" != "no"; then
echo "WARNING: You are compiling without OpenSSL $use_openssl $with_openssl"
fi

View file

@ -989,3 +989,7 @@ fi
echo " NMAP IS A POWERFUL TOOL -- USE CAREFULLY AND RESPONSIBLY"
echo "Configuration complete. Type make (or gmake on some *BSD machines) to compile."
if test "x$use_openssl" = "xno" && test "x$with_openssl" != "xno"; then
echo "WARNING: You are compiling without OpenSSL"
fi