From: Alex Rousskov Date: Wed, 21 Sep 2016 02:09:36 +0000 (+1200) Subject: Bug 4228: ./configure bug/typo in r14394. X-Git-Tag: SQUID_3_5_22~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b0083ea9cc33391067a7c23cb5a685ebf11d1db;p=thirdparty%2Fsquid.git Bug 4228: ./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 670a5eff80..5a2be37d98 100644 --- a/configure.ac +++ b/configure.ac @@ -1778,7 +1778,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]) @@ -1848,7 +1848,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])