This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 1afc844b6315f74d5369b79a7dc9a03d71a16d17
Author: Kim Woelders <[email protected]>
AuthorDate: Thu Mar 26 21:11:46 2026 +0100
autofoo: Fix configure.ac for gettext v1.0
autopoint-1.0 complained:
autopoint: *** found more than one invocation of AM_GNU_GETTEXT_REQUIRE_VERSION
Reqiring 0.19.6 (from September 2015) means the test can be dropped.
---
configure.ac | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
index 4a08e2be..9cc503b6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -47,10 +47,8 @@ AC_CHECK_FUNCS(buttox)
AM_ICONV
AM_GNU_GETTEXT([external])
-AM_GNU_GETTEXT_VERSION([0.19])
-m4_ifdef([AM_GNU_GETTEXT_REQUIRE_VERSION], [
-AM_GNU_GETTEXT_REQUIRE_VERSION([0.19])
-])
+AM_GNU_GETTEXT_VERSION([0.19.6])
+AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])
AC_CHECK_FUNCS([clock_gettime], [have_clock_gettime=yes],
[AC_CHECK_LIB([rt], [clock_gettime], [have_clock_gettime=-lrt],
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.