From: wessels <> Date: Thu, 10 Aug 2000 12:26:41 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~1876 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=87d21d8bebced48af7e7c4c2bbd47b3d6c0c6603;p=thirdparty%2Fsquid.git DW: - Bad "==" operator to test(1) --- diff --git a/configure b/configure index 2daa8aa143..a6c2f5c630 100755 --- 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" && diff --git a/configure.in b/configure.in index 68a61cf6cc..6d721db5ef 100644 --- a/configure.in +++ b/configure.in @@ -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" &&