diff options
author | Sam James <sam@gentoo.org> | 2022-11-22 04:44:24 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-11-22 04:44:24 +0000 |
commit | 5163051e02908e8415eb36cbee56727e08c3b1c1 (patch) | |
tree | 5a3fe8ac7776eff8180cbaaddc2e0bffb5e0cce1 /app-crypt | |
parent | app-crypt/mit-krb5: add github upstream metadata (diff) | |
download | gentoo-5163051e02908e8415eb36cbee56727e08c3b1c1.tar.gz gentoo-5163051e02908e8415eb36cbee56727e08c3b1c1.tar.bz2 gentoo-5163051e02908e8415eb36cbee56727e08c3b1c1.zip |
app-crypt/mit-krb5: add autoconf 2.72 patch
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/mit-krb5/files/mit-krb5-1.20.1-autoconf-2.72.patch | 31 | ||||
-rw-r--r-- | app-crypt/mit-krb5/mit-krb5-1.20.1.ebuild | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/app-crypt/mit-krb5/files/mit-krb5-1.20.1-autoconf-2.72.patch b/app-crypt/mit-krb5/files/mit-krb5-1.20.1-autoconf-2.72.patch new file mode 100644 index 000000000000..b55193bcc7fa --- /dev/null +++ b/app-crypt/mit-krb5/files/mit-krb5-1.20.1-autoconf-2.72.patch @@ -0,0 +1,31 @@ +https://github.com/krb5/krb5/commit/d864d740d019fdf2c640460f2aa2760c7fa4d5e9 + +From d864d740d019fdf2c640460f2aa2760c7fa4d5e9 Mon Sep 17 00:00:00 2001 +From: Julien Rische <jrische@redhat.com> +Date: Thu, 17 Nov 2022 15:01:24 +0100 +Subject: [PATCH] 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 +--- a/aclocal.m4 ++++ b/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) + diff --git a/app-crypt/mit-krb5/mit-krb5-1.20.1.ebuild b/app-crypt/mit-krb5/mit-krb5-1.20.1.ebuild index 1d7889bfab83..cd47708db88f 100644 --- a/app-crypt/mit-krb5/mit-krb5-1.20.1.ebuild +++ b/app-crypt/mit-krb5/mit-krb5-1.20.1.ebuild @@ -54,6 +54,7 @@ PATCHES=( "${FILESDIR}/${PN}_dont_create_rundir.patch" "${FILESDIR}/${PN}-1.18.2-krb5-config.patch" "${FILESDIR}/${PN}-1.20-missing-time-include.patch" + "${FILESDIR}/${PN}-1.20.1-autoconf-2.72.patch" ) MULTILIB_CHOST_TOOLS=( |