From d20b1cb15e057f0057de316081fbc56a204fb351 Mon Sep 17 00:00:00 2001 From: Marcin Serwin Date: Fri, 6 Feb 2026 17:31:44 +0100 Subject: [PATCH] Fix build with gettext 0.24+ Since gettext 0.24 this invocation is required, otherwise autoconf does not use gettext. Signed-off-by: Marcin Serwin --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index ee1b118..e56133e 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,8 @@ AM_PROG_CC_C_O AC_PROG_INSTALL AM_ICONV PKG_PROG_PKG_CONFIG +AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.24]) # Check for mingw compiler platform AC_MSG_CHECKING([For MinGW32])