From 7b0083ea9cc33391067a7c23cb5a685ebf11d1db Mon Sep 17 00:00:00 2001 From: Alex Rousskov Date: Wed, 21 Sep 2016 14:09:36 +1200 Subject: [PATCH] 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. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]) -- 2.47.2