]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
Lower the minimum gettext version requirement
authorFrédéric Marchal <fmarchal@users.sourceforge.net>
Thu, 27 Jan 2011 19:51:10 +0000 (19:51 +0000)
committerFrédéric Marchal <fmarchal@users.sourceforge.net>
Thu, 27 Jan 2011 19:51:10 +0000 (19:51 +0000)
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

index ee812d6d5c8c34418403cf15080f3f0c2b54349d..8e4ff6bf8412aad249a283636d0e3697f2e9ec7a 100644 (file)
@@ -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