]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Also check for SASL shared libreries in SASL helper configlet.
authorFrancesco Chemolli <kinkie@squid-cache.org>
Tue, 23 Mar 2010 16:08:04 +0000 (17:08 +0100)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Tue, 23 Mar 2010 16:08:04 +0000 (17:08 +0100)
helpers/basic_auth/SASL/config.test

index 7f4b817f3314cfa67c9906686aa648fdfca85eb8..34e5befe55a14d44bcf6f917fbbfc1857def45ed 100755 (executable)
@@ -6,5 +6,8 @@ if [ -f /usr/include/sasl.h -o -f /usr/include/sasl/sasl.h ]; then
        if [ -f /usr/lib/libsasl.la -o -f /usr/lib/libsasl2.la ]; then
                exit 0
        fi
+       if [ -f /usr/lib/libsasl.so -o -f /usr/lib/libsasl2.so ]; then
+               exit 0
+       fi
 fi
 exit 1