1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Nicolas Schodet <nico@ni.fr.eu.org>
Date: Fri, 7 Mar 2025 22:55:49 +0100
Subject: Add now mandatory parameter to AM_GNU_GETTEXT
Forwarded: not-needed
---
intl/configure.in | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/intl/configure.in b/intl/configure.in
index 692ff25..8e2f3b0 100644
--- a/intl/configure.in
+++ b/intl/configure.in
@@ -2,7 +2,9 @@ AC_PREREQ(2.13)
AC_INIT(gettext.c)
AC_CONFIG_HEADER(config.h)
AM_GNU_GETTEXT_VERSION(0.12.1)
-AM_GNU_GETTEXT
+AM_GNU_GETTEXT(external)
+USE_INCLUDED_LIBINTL=no
+AC_SUBST([USE_INCLUDED_LIBINTL])
dnl This replaces the extensive use of DEFS in the original Makefile.in.
AC_DEFINE(IN_LIBINTL, 1, [Define because this is libintl.])
|