]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
DW:
authorwessels <>
Thu, 10 Aug 2000 12:26:41 +0000 (12:26 +0000)
committerwessels <>
Thu, 10 Aug 2000 12:26:41 +0000 (12:26 +0000)
 - Bad "==" operator to test(1)

configure
configure.in

index 2daa8aa143e522512fac7b37a46f520f9e523efd..a6c2f5c6309980fc9c1b2e0a4d8227ed646b4230 100755 (executable)
--- a/configure
+++ b/configure
@@ -4655,8 +4655,8 @@ echo "configure:4655: checking if IP-Filter header files are installed" >&5
     # hold on to your hats...
     if test "$ac_cv_header_ip_compat_h" = "yes" ||
         test "$ac_cv_header_ip_fil_compat_h" = "yes" ||
-        test "$ac_cv_header_netinet_ip_compat_h" == "yes" ||
-        test "$ac_cv_header_netinet_ip_fil_compat_h" == "yes" ; then
+        test "$ac_cv_header_netinet_ip_compat_h" = "yes" ||
+        test "$ac_cv_header_netinet_ip_fil_compat_h" = "yes" ; then
         have_ipfilter_compat_header="yes"
      fi
      if test "x$have_ipfilter_compat_header" = "xyes" &&
index 68a61cf6cc852446e4d1ecf06c7a3e0a8e033b88..6d721db5efbcecd49174e5e819194d6020ea889a 100644 (file)
@@ -3,13 +3,13 @@ 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.200 2000/08/01 17:02:56 hno Exp $
+dnl  $Id: configure.in,v 1.201 2000/08/10 06:26:42 wessels Exp $
 dnl
 dnl
 dnl
 AC_INIT(src/main.c)
 AC_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.200 $)dnl
+AC_REVISION($Revision: 1.201 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AC_CONFIG_AUX_DIR(cfgaux)
 
@@ -1232,8 +1232,8 @@ if test "$IPF_TRANSPARENT" ; then
     # hold on to your hats...
     if test "$ac_cv_header_ip_compat_h" = "yes" ||
         test "$ac_cv_header_ip_fil_compat_h" = "yes" ||
-        test "$ac_cv_header_netinet_ip_compat_h" == "yes" ||
-        test "$ac_cv_header_netinet_ip_fil_compat_h" == "yes" ; then
+        test "$ac_cv_header_netinet_ip_compat_h" = "yes" ||
+        test "$ac_cv_header_netinet_ip_fil_compat_h" = "yes" ; then
         have_ipfilter_compat_header="yes"
      fi
      if test "x$have_ipfilter_compat_header" = "xyes" &&