aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Rische <jrische@redhat.com>2022-11-17 15:01:24 +0100
committerGreg Hudson <ghudson@mit.edu>2023-07-06 17:14:20 -0400
commitd1e41ca5c0e36b6ac4e6e9aa89099b0af876d447 (patch)
treed71f8e0c95835c9714471cae3c72a8cc0f536c92
parenta6971d269577afa68584d6076bd90f84c2099f93 (diff)
downloadkrb5-d1e41ca5c0e36b6ac4e6e9aa89099b0af876d447.zip
krb5-d1e41ca5c0e36b6ac4e6e9aa89099b0af876d447.tar.gz
krb5-d1e41ca5c0e36b6ac4e6e9aa89099b0af876d447.tar.bz2
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] (cherry picked from commit d864d740d019fdf2c640460f2aa2760c7fa4d5e9) ticket: 9077 version_fixed: 1.20.2
-rw-r--r--src/aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 9920476..3d66a87 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)