From: Amos Jeffries Date: Wed, 21 Jul 2010 07:23:43 +0000 (-0600) Subject: Remove .so from SASL build checks X-Git-Tag: SQUID_3_1_5_1~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=062e86bb5f53ccf33ffcee77d7ff93d616acabd2;p=thirdparty%2Fsquid.git Remove .so from SASL build checks We definitely require the .a and .la files to build against SASL libraries. The run-time .so is only relevant later. --- diff --git a/helpers/basic_auth/SASL/config.test b/helpers/basic_auth/SASL/config.test index 34e5befe55..7f4b817f33 100755 --- a/helpers/basic_auth/SASL/config.test +++ b/helpers/basic_auth/SASL/config.test @@ -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