--------------------- PatchSet 6297 Date: 2004/09/15 23:21:55 Author: dwsquid Branch: icap-2_5 Tag: (none) Log: A patch from Olivier Girondel that figures out of we need to compile lib/strcasestr.c Members: configure.in:1.42.2.35.2.9->1.42.2.35.2.10 Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid/configure.in,v retrieving revision 1.42.2.35.2.9 retrieving revision 1.42.2.35.2.10 diff -u -r1.42.2.35.2.9 -r1.42.2.35.2.10 --- squid/configure.in 4 Aug 2004 19:47:53 -0000 1.42.2.35.2.9 +++ squid/configure.in 15 Sep 2004 23:21:55 -0000 1.42.2.35.2.10 @@ -3,7 +3,7 @@ dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.42.2.35.2.9 2004/08/04 19:47:53 dwsquid Exp $ +dnl $Id: configure.in,v 1.42.2.35.2.10 2004/09/15 23:21:55 dwsquid Exp $ dnl dnl dnl @@ -11,7 +11,7 @@ AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE(squid, 2.5.STABLE6-CVS) AM_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.42.2.35.2.9 $)dnl +AC_REVISION($Revision: 1.42.2.35.2.10 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -1750,6 +1750,7 @@ srandom \ statfs \ strnstr \ + strcasestr \ sysconf \ syslog \ timegm \ @@ -1787,7 +1788,12 @@ if test "$ac_cv_func_strnstr" = "no" || test "$ac_cv_func_vstrnstr" = "no" ; then AM_CONDITIONAL(NEED_OWN_STRNSTR, true) fi - + +AM_CONDITIONAL(NEED_OWN_STRCASESTR, false) +if test "$ac_cv_func_strcasestr" = "no" || test "$ac_cv_func_vstrcasestr" = "no"; then + AM_CONDITIONAL(NEED_OWN_STRCASESTR, true) +fi + dnl dnl Test for va_copy dnl