From: Amos Jeffries Date: Thu, 16 Oct 2008 04:49:01 +0000 (+1300) Subject: Update configure.in code about ICMP X-Git-Tag: SQUID_3_2_0_1~1398^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6ca6df1b0a213d9f0e133598e66792f90c4c582;p=thirdparty%2Fsquid.git Update configure.in code about ICMP --- diff --git a/configure.in b/configure.in index 36ee27bfd4..a5d061d574 100755 --- a/configure.in +++ b/configure.in @@ -702,12 +702,10 @@ AC_SUBST(REPL_LIBS) AM_CONDITIONAL(ENABLE_PINGER, false) AC_ARG_ENABLE(icmp, -[ --enable-icmp Enable ICMP pinging], + AC_HELP_STRING([--enable-icmp],[Enable ICMP pinging and Network Measurement]), [ if test "$enableval" = "yes" ; then echo "ICMP enabled" - AC_DEFINE(USE_ICMP,1, - [ Defined this to use Squid's ICMP features (highly recommended!) - When USE_ICMP is defined, Squid will send ICMP pings to origin server sites.]) + AC_DEFINE(USE_ICMP,1,[ Defined to use Squid's ICMP and Network Measurement features (highly recommended!)]) AM_CONDITIONAL(ENABLE_PINGER, true) fi ])