From: wessels <> Date: Wed, 25 Mar 1998 10:09:43 +0000 (+0000) Subject: --enable-gnuregex from Henrik for NT X-Git-Tag: SQUID_3_0_PRE1~3753 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55878dfd8dc21f6537976c08c73aff1f563bb6a8;p=thirdparty%2Fsquid.git --enable-gnuregex from Henrik for NT --- diff --git a/configure b/configure index 8e9848a359..c72b493403 100755 --- a/configure +++ b/configure @@ -557,7 +557,7 @@ fi -# From configure.in Revision: 1.108 +# From configure.in Revision: 1.109 ac_aux_dir= for ac_dir in cfgaux $srcdir/cfgaux; do if test -f $ac_dir/install-sh; then @@ -3605,7 +3605,7 @@ fi echo $ac_n "checking if GNUregex needs to be compiled""... $ac_c" 1>&6 echo "configure:3608: checking if GNUregex needs to be compiled" >&5 -if test "$ac_cv_func_regcomp" = "no" ; then +if test "$ac_cv_func_regcomp" = "no" || test "$USE_GNUREGEX" = "yes" ; then USE_GNUREGEX="yes" else USE_GNUREGEX="no" diff --git a/configure.in b/configure.in index 255c5353e5..72e00985d3 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.109 1998/03/25 03:04:11 wessels Exp $ +dnl $Id: configure.in,v 1.110 1998/03/25 03:09:43 wessels Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.109 $)dnl +AC_REVISION($Revision: 1.110 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(cfgaux) @@ -666,7 +666,7 @@ if test "$ac_cv_func_setresuid" = "yes" ; then fi AC_MSG_CHECKING(if GNUregex needs to be compiled) -if test "$ac_cv_func_regcomp" = "no" ; then +if test "$ac_cv_func_regcomp" = "no" || test "$USE_GNUREGEX" = "yes" ; then USE_GNUREGEX="yes" else USE_GNUREGEX="no"