[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] configure.ac: crank up gettext version
From: |
Sam James |
Subject: |
[PATCH] configure.ac: crank up gettext version |
Date: |
Wed, 16 Nov 2022 15:39:24 +0000 |
Even if newer gettext is installed, the version used & paths taken
are gated on the macro's argument. Older gettext can't handle musl's
libintl situation correctly and end up silently skipping it.
There's also a bunch of modernisation which avoids some warnings
in newer versions. 0.21 is in Debian stable so should be fine.
Signed-off-by: Sam James <sam@gentoo.org>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 87864eb..d0a8266 100644
--- a/configure.ac
+++ b/configure.ac
@@ -34,7 +34,7 @@ AC_SYS_LARGEFILE
AM_PROG_AR
LT_INIT
-AM_GNU_GETTEXT_VERSION([0.18.2])
+AM_GNU_GETTEXT_VERSION([0.21])
AM_GNU_GETTEXT([external])
AC_ARG_ENABLE([debug],
--
2.38.1