From 12004f3a78584a267898abffece9f8f653e9e0da Mon Sep 17 00:00:00 2001 From: Adolf Belka Date: Wed, 14 May 2025 17:00:17 +0000 Subject: [PATCH] configure: Explicitely configure Gettext From version 0.25, Gettext will complain about not calling autopoint to set up all required macros required 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 972b1c2..98ff7ed 100644 --- a/configure.ac +++ b/configure.ac @@ -31,6 +31,9 @@ LT_INIT([ ]) AC_PREFIX_DEFAULT([/usr]) +AM_GNU_GETTEXT_VERSION(0.21) +AM_GNU_GETTEXT([external]) + IT_PROG_INTLTOOL([0.40.0]) GETTEXT_PACKAGE=${PACKAGE_TARNAME} -- 2.39.5