From: Amos Jeffries Date: Sun, 27 Nov 2011 10:16:11 +0000 (+1300) Subject: libxml2 is an optional component X-Git-Tag: BumpSslServerFirst.take05~12^2~158 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67840a076994007dc9ee09c4086fc09a59294b81;p=thirdparty%2Fsquid.git libxml2 is an optional component Do not block the build if it is missing during auto-detect. --- diff --git a/configure.ac b/configure.ac index b0c901cba3..0b8d99affd 100644 --- a/configure.ac +++ b/configure.ac @@ -925,8 +925,7 @@ if test "x$squid_opt_use_esi" = "xyes" -a "x$with_libxml2" != "xno" ; then CPPFLAGS="-I/usr/local/include/libxml2 $SAVED_CPPFLAGS" unset ac_cv_header_libxml_parser_h AC_CHECK_HEADERS([libxml/parser.h], [ac_cv_libxml2_include="-I/usr/local/include/libxml2"], [ - AC_MSG_ERROR([Failed to find libxml2 header file libxml/parser.h]) - + AC_MSG_NOTICE([Failed to find libxml2 header file libxml/parser.h]) ]) ]) CPPFLAGS="$SAVED_CPPFLAGS"