]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed ./configure bug/typo in r14394.
authorAlex Rousskov <rousskov@measurement-factory.com>
Tue, 20 Sep 2016 22:11:17 +0000 (16:11 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Tue, 20 Sep 2016 22:11:17 +0000 (16:11 -0600)
The bug resulted in "test: too many arguments" error messages when
running ./configure and effectively replaced AC_MSG_ERROR() with
AC_MSG_WARN() for missing but required Heimdal and GNU GSS Kerberos
libraries.

configure.ac

index 331d037e5179bffa4cb74c6e1745adceeab732a9..1dabce12a51094094eed472064706fb4c153f85b 100644 (file)
@@ -1758,7 +1758,7 @@ if test "x$with_heimdal_krb5" != "xno" -a "x$KRB5LIBS" = "x"; then
     SQUID_CHECK_KRB5_FUNCS
   fi
   if test "x$KRB5LIBS" = "x"; then
-    if test test "x$with_heimdal_krb5" = "xyes"; then
+    if test "x$with_heimdal_krb5" = "xyes"; then
       AC_MSG_ERROR([Required Heimdal Kerberos library not found])
     else
       AC_MSG_WARN([Heimdal Kerberos library not found])
@@ -1828,7 +1828,7 @@ if test "x$with_gnugss" != "xno" -a "x$KRB5LIBS" = "x"; then
     SQUID_DEFINE_BOOL(HAVE_KRB5,$squid_cv_working_krb5,[KRB5 support])
   fi
   if test "x$KRB5LIBS" = "x"; then
-    if test test "x$with_gnugss" = "xyes"; then
+    if test "x$with_gnugss" = "xyes"; then
       AC_MSG_ERROR([Required GNU GSS Kerberos library not found])
     else
       AC_MSG_WARN([GNU GSS Kerberos library not found])