From: Henrik Nordstrom Date: Thu, 23 Oct 2008 11:21:23 +0000 (+0200) Subject: Make --enable-storeio (without specifications) skip coss X-Git-Tag: SQUID_3_0_STABLE11_RC1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=993e7d6d01ec6a0c1e5f0af33766a69e3f528cb8;p=thirdparty%2Fsquid.git Make --enable-storeio (without specifications) skip coss coss isn't supported. Don't automatically enable it. --- diff --git a/configure.in b/configure.in index 82fb511666..0b0f817adc 100755 --- a/configure.in +++ b/configure.in @@ -388,7 +388,7 @@ AC_ARG_ENABLE(storeio, yes) for dir in $srcdir/src/fs/*; do module="`basename $dir`" - if test -d "$dir" && test "$module" != CVS; then + if test -d "$dir" && test "$module" != CVS && test "$module" != coss; then STORE_MODULES="$STORE_MODULES $module" fi done