From: Julien Rische Date: Thu, 17 Nov 2022 14:01:24 +0000 (+0100) Subject: Fix aclocal.m4 syntax error for autoconf 2.72 X-Git-Tag: krb5-1.21-beta1~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1272%2Fhead;p=thirdparty%2Fkrb5.git Fix aclocal.m4 syntax error for autoconf 2.72 An incorrect closure inside KRB5_AC_INET6 is innocuous with autoconf versions up to 2.71, but will cause an error at configure time with the forthcoming autoconf 2.72. [ghudson@mit.edu: added more context to commit message] ticket: 9077 (new) tags: pullup target_version: 1.20-next target_version: 1.19-next --- diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 9920476f91..3d66a876b3 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -409,8 +409,8 @@ else [[struct sockaddr_in6 in; AF_INET6; IN6_IS_ADDR_LINKLOCAL(&in.sin6_addr);]])], - [krb5_cv_inet6=yes], [krb5_cv_inet6=no])]) -fi + [krb5_cv_inet6=yes], [krb5_cv_inet6=no]) +fi]) AC_MSG_RESULT($krb5_cv_inet6) if test "$krb5_cv_inet6" = no && test "$ac_cv_func_inet_ntop" = yes; then AC_MSG_CHECKING(for IPv6 compile-time support with -DINET6)