Skip to content

Commit

Permalink
Fix aclocal.m4 syntax error for autoconf 2.72
Browse files Browse the repository at this point in the history
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 d864d74)

ticket: 9077
version_fixed: 1.20.2
  • Loading branch information
jrisc authored and greghudson committed Jul 6, 2023
1 parent a6971d2 commit d1e41ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aclocal.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d1e41ca

Please sign in to comment.