]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Remove .so from SASL build checks
authorAmos Jeffries <amosjeffries@squid-cache.org>
Thu, 15 Jul 2010 01:36:28 +0000 (19:36 -0600)
committerAmos Jeffries <amosjeffries@squid-cache.org>
Thu, 15 Jul 2010 01:36:28 +0000 (19:36 -0600)
We definitely require the .a and .la files to build against SASL libraries.
The run-time .so is only relevant later.

helpers/basic_auth/SASL/config.test

index 34e5befe55a14d44bcf6f917fbbfc1857def45ed..7f4b817f3314cfa67c9906686aa648fdfca85eb8 100755 (executable)
@@ -6,8 +6,5 @@ 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