From 4762c7a3ad387ce1af6d00678b03acc888ff0002 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Wed, 25 Mar 2020 13:09:17 +0200 Subject: [PATCH] Bump gettext version to 0.18.2 to get rid of deprecation warnings Our beloved gettext 0.16.1 version causes automake to complain about AM_PROG_MKDIR_P being deprecated although we never directly use such a macro for anything. This appears to have been fixed in gettext 0.18.2 so bump to that version, having been released in 2012 makes it, um, mature enough, even for rpm purposes. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bdfe2c657..e72a14939 100644 --- a/configure.ac +++ b/configure.ac @@ -625,7 +625,7 @@ if test "x$have_sqlite" = "xyes"; then fi AM_CONDITIONAL([SQLITE], [test "x$have_sqlite" = "xyes"]) -AM_GNU_GETTEXT_VERSION([0.16.1]) +AM_GNU_GETTEXT_VERSION([0.18.2]) AM_GNU_GETTEXT([external]) AM_ICONV