mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Print warning if OpenSSL is not found but not explicitely disabled
This commit is contained in:
parent
b99e76ec60
commit
b705866220
2 changed files with 8 additions and 0 deletions
4
configure
vendored
4
configure
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue