> The ICAP patch is from Fri Jan 30 10:28:53 2004 GMT. 
> 
You should check the latest patch from devel.squid-cache.org which
contains many bug fix since the beginning of the year. Once you have
patched your Squid tree, you need to run bootstrap.sh, but it will
probably fail. I've attached a little patch here for that.
You need automake 1.5 to run boostrap properly, it fails with the 1.4
version.

>                                                                                      
>                     
> >
> 2004/09/09 12:56:36| BAD ICAP status line <0

I've already seen that, WebWasher returns an HTTP status line, not an
ICAP one so the icap_client is quite confused with it. Is your WebWasher
proxy activated?


-- 
Stephane DAVY <[EMAIL PROTECTED]>



--- configure.in	2004-09-15 14:42:57.000000000 +0200
+++ configure.in.new	2004-09-15 14:45:25.000000000 +0200
@@ -1750,6 +1750,7 @@
 	srandom \
 	statfs \
 	strnstr \
+	strcasestr \
 	sysconf \
 	syslog \
 	timegm \
@@ -1787,6 +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

Reply via email to