From: Alex Rousskov Date: Tue, 20 Sep 2016 22:11:17 +0000 (-0600) Subject: Fixed ./configure bug/typo in r14394. X-Git-Tag: SQUID_4_0_15~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4f198997433fe06c696a3426aab15e30b62b73c;p=thirdparty%2Fsquid.git Fixed ./configure bug/typo in r14394. 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. --- diff --git a/configure.ac b/configure.ac index 331d037e51..1dabce12a5 100644 --- a/configure.ac +++ b/configure.ac @@ -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])