]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Make --enable-storeio (without specifications) skip coss
authorHenrik Nordstrom <henrik@henriknordstrom.net>
Thu, 23 Oct 2008 11:21:23 +0000 (13:21 +0200)
committerHenrik Nordstrom <henrik@henriknordstrom.net>
Thu, 23 Oct 2008 11:21:23 +0000 (13:21 +0200)
coss isn't supported. Don't automatically enable it.

configure.in

index 82fb511666911c3e13bb232bf7b10605e2989f62..0b0f817adc10a825e51ac2c6d05e99c453a2586e 100755 (executable)
@@ -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