From 0a5ba4233028d256789c72882b2abe165d6d5ddc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Marchal?= Date: Thu, 27 Jan 2011 19:51:10 +0000 Subject: [PATCH] Lower the minimum gettext version requirement We don't have to ask for the most recent version of gettext. A quick search through gettext's sources showed that 0.15.1 is likely to contain all the features we need. In fact, all the features we need may be available since version 0.12 but I'm not sure about that. --- configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index ee812d6..8e4ff6b 100644 --- a/configure.in +++ b/configure.in @@ -88,7 +88,8 @@ dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_STRUCT_TM -AM_GNU_GETTEXT_VERSION([0.18]) +# It looks like gettext 0.15.1 does contain all the features we need. +AM_GNU_GETTEXT_VERSION([0.15.1]) AM_GNU_GETTEXT([external]) AC_SYS_LARGEFILE -- 2.47.2