From cc5ec2a158a7cd9e3e50ff37831f4598bff1cb6c Mon Sep 17 00:00:00 2001 From: Darshit Shah Date: Fri, 25 Feb 2022 17:25:30 +0100 Subject: [PATCH] Fix case where installed gettext is newer than minimum version * configure.ac: Use AM_GNU_GETTEXT_REQUIRE_VERSION to specify a minimum version of gettext needed. This should allow newer versions of gettext to be copied for autipoint to use when available. This commit hopefully fixes the annoying issue when building from source on a system that has a newer version of gettext. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 885194d4..8a5af520 100644 --- a/configure.ac +++ b/configure.ac @@ -262,6 +262,7 @@ dnl Gettext dnl AM_GNU_GETTEXT([external],[need-ngettext]) AM_GNU_GETTEXT_VERSION([0.19.3]) +AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.3]) AC_PROG_RANLIB