From: Amos Jeffries Date: Wed, 12 Jan 2011 12:54:10 +0000 (+1300) Subject: Fix "unrecognized value for USE_LIBNETFILTERCONNTRACK: 'auto'" X-Git-Tag: take00~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88a2a8c600b8ae6b6f8e9792ccc31740dea70240;p=thirdparty%2Fsquid.git Fix "unrecognized value for USE_LIBNETFILTERCONNTRACK: 'auto'" Thanks to Andrew Beverly. --- diff --git a/configure.ac b/configure.ac index 12176f188c..085ddf4812 100644 --- a/configure.ac +++ b/configure.ac @@ -1377,6 +1377,10 @@ if test "x$with_netfilter_conntrack" != "xno"; then AC_MSG_ERROR([--with-netfilter-conntrack specified but libnetfilter-conntrack headers not found]) fi with_netfilter_conntrack=no]) + # If nothing is broken; enable the libraries usage. + if test "x$with_netfilter_conntrack" != "xno"; then + with_netfilter_conntrack=yes + fi fi AC_MSG_NOTICE([Linux Netfilter Conntrack support enabled: ${with_netfilter_conntrack} ${squid_opt_netfilterconntrackpath}])