]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
ARP is actually implemented for Solaris as well.. no need to warn there.
authorhno <>
Thu, 15 Nov 2001 06:18:46 +0000 (06:18 +0000)
committerhno <>
Thu, 15 Nov 2001 06:18:46 +0000 (06:18 +0000)
configure.in

index b16ae3da9843d70f352153267b68a93013929de9..6c646d58e6aa69c6d237483533a7e64460cdc406 100644 (file)
@@ -3,7 +3,7 @@ dnl  Configuration input file for Squid
 dnl
 dnl  Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
 dnl
-dnl  $Id: configure.in,v 1.239 2001/10/30 13:19:23 adrian Exp $
+dnl  $Id: configure.in,v 1.240 2001/11/14 23:18:46 hno Exp $
 dnl
 dnl
 dnl
@@ -11,7 +11,7 @@ AC_INIT(src/main.c)
 AC_CONFIG_AUX_DIR(cfgaux)
 AM_INIT_AUTOMAKE(Squid, 2.5-DEVEL)
 AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.239 $)dnl
+AC_REVISION($Revision: 1.240 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AM_MAINTAINER_MODE
 
@@ -525,11 +525,12 @@ AC_ARG_ENABLE(arp-acl,
 [  if test "$enableval" = "yes" ; then
      echo "ARP ACL lists enabled (ether address)"
      case "$host" in
-       *-pc-linux-*)
+       *-linux-*)
+           ;;
+       *-solaris-*)
            ;;
        *)
-           echo "WARNING: ARP ACL support is only currently supported on Linux"
-           echo "         ethernet interfaces, probably won't work on $host."
+           echo "WARNING: ARP ACL support probably won't work on $host."
            sleep 10
            ;;
      esac