From: Amos Jeffries Date: Thu, 15 Jul 2010 01:36:28 +0000 (-0600) Subject: Remove .so from SASL build checks X-Git-Tag: SQUID_3_2_0_1~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5140272edecce85e2b2f25c8f50504bfacf676d;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