mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
This package release is an extra-vintage 2005 with extra gnulib on top. Among numerous other issues, the broken autoconf standard macros managed to break the STDC_HEADERS check, resulting in cvs thinking that there are no available standard headers, and not bothering to include them. Ouch! To fix this, we: - fix a broken AM_GNU_GETTEXT_VERSION macro to stop autopoint erroring - rerun eautoreconf, to fix various standard macros with c99 fixes - add some m4 patches that partially backport gnulib fixes (I think hope and pray, since I stopped looking at them after a bit due to the inability to backport) Also, while we are at it, throw in a broken shell quoting fix. Closes: https://bugs.gentoo.org/898782 Closes: https://bugs.gentoo.org/882225 Closes: https://bugs.gentoo.org/870835 Signed-off-by: Eli Schwartz <eschwartz93@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
26 lines
806 B
Diff
26 lines
806 B
Diff
From dafaeefa2d81034333ec73594b8209caebb69b23 Mon Sep 17 00:00:00 2001
|
|
From: Eli Schwartz <eschwartz93@gmail.com>
|
|
Date: Sun, 19 May 2024 19:48:33 -0400
|
|
Subject: [PATCH] gettext autoreconf
|
|
|
|
---
|
|
configure.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.in b/configure.in
|
|
index ada8454..d4f3a44 100644
|
|
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -206,7 +206,7 @@ gl_INIT
|
|
dnl For one reason or another, the autogenerated m4/gnulib.m4 wants
|
|
dnl AM_GNU_GETTEXT([external]) called directly from here.
|
|
AM_GNU_GETTEXT([external])
|
|
-AM_GNU_GETTEXT_VERSION dnl work around for autoconf-2.57 bug.
|
|
+AM_GNU_GETTEXT_VERSION(0.22.4)
|
|
# The error module still poses merge problems.
|
|
AC_FUNC_STRERROR_R
|
|
dnl The following macros can be called by other GNULIB macros but are also
|
|
--
|
|
2.44.1
|
|
|