From 5eb68e1aafb70d02e351de4945023c017908e548 Mon Sep 17 00:00:00 2001 From: Adolf Belka Date: Wed, 14 May 2025 17:06:27 +0000 Subject: [PATCH] configure: Explicitely configure Gettext From version 0.25, Gettext will complain about not calling autopoint to set up all required macros requied by autoconf later on. Signed-off-by: Michael Tremer --- autogen.sh | 2 +- configure.ac | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index ba2845a..76678b6 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,7 +9,7 @@ if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then fi intltoolize --force --automake -autoreconf --install --symlink +autoreconf --force --install --symlink libdir() { echo $(cd $1/$(gcc -print-multi-os-directory); pwd) diff --git a/configure.ac b/configure.ac index 1fae3a3..c9749bd 100644 --- a/configure.ac +++ b/configure.ac @@ -30,6 +30,9 @@ LT_INIT([ AC_PREFIX_DEFAULT([/usr]) gl_LD_VERSION_SCRIPT +AM_GNU_GETTEXT_VERSION(0.21) +AM_GNU_GETTEXT([external]) + IT_PROG_INTLTOOL([0.40.0]) # Interpret embedded Python in HTML files -- 2.39.5