The patch is OK.
Just one small fix required. Somewhere in the patch there are the
following lines:


-     ],
-     [
-      AC_MSG_RESULT([no])
-     ],
-     [
+       [])
+    )
+    if "x$squid_cv_pstringdata_hack" = "xyes" ; then
       AC_DEFINE(SQUID_STACKOF_PSTRINGDATA_HACK, 1)
-      AC_MSG_RESULT([yes])
-     ],
-     [])
+    fi
   fi


You need to fix the line:
  if "x$squid_cv_pstringdata_hack" = "xyes" ; then
to be
   if test "x$squid_cv_pstringdata_hack" = "xyes" ; then


On 07/01/2013 06:42 PM, Kinkie wrote:
> Hi all,
>   this patch builds on top of Christos' latest work, enabling caching
> of the detected results.
> No other functional changes in it (at least, none intentional).
> 
> --
>     /kinkie
> 

Reply via email to