From 606b3e3ca8c6871e2dd7f91d74e3d29cb38e3af5 Mon Sep 17 00:00:00 2001 From: fyodor Date: Sat, 23 Jul 2005 01:23:14 +0000 Subject: [PATCH] test --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index a7fa1aace..517fd51e8 100644 --- a/configure.ac +++ b/configure.ac @@ -286,7 +286,7 @@ have_libpcap=no test "${with_libpcap+set}" != "set" && with_libpcap=yes AC_ARG_WITH(libpcap, -[ --with-libpcap[=DIR] Look for pcap in DIR/include and DIR/libs], +[ --with-libpcap[=DIR] Look for pcap in DIR/include and DIR/libs. Specify --with-libpcap=included to always use version included with Nmap], [ case "$with_libpcap" in yes) AC_MSG_WARN([YOU SAID YES...YOU SAID YES]) @@ -294,8 +294,8 @@ AC_ARG_WITH(libpcap, AC_CHECK_LIB(pcap, pcap_datalink, [have_libpcap=yes ])]) ;; - no) - AC_MSG_WARN([YOU SAID NO...YOU SAID NO]) + included) + AC_MSG_WARN([YOU SAID INCLUDED...YOU SAID INCLUDED]) have_libpcap=no ;; *)