Skip to content
Snippets Groups Projects
Commit b9c07c8ab0b3 authored by Lasse Collin's avatar Lasse Collin
Browse files

Build: Use AM_GNU_GETTEXT_REQUIRE_VERSION and require 0.19.6.

This bumps the version requirement from 0.19 (from 2014) to
0.19.6 (2015).

Using only the old AM_GNU_GETTEXT_VERSION results in old
gettext infrastructure being placed in the package. By using
both macros we get the latest gettext files while the other
programs in the Autotools family can still see the old macro.
parent 536437c6262a
No related branches found
No related tags found
No related merge requests found
......@@ -643,5 +643,8 @@
# Checks for libraries.
###############################################################################
dnl Support for _REQUIRE_VERSION was added in gettext 0.19.6. If both
dnl _REQUIRE_VERSION and _VERSION are present, the _VERSION is ignored.
dnl We use both for compatibility with other programs in the Autotools family.
echo
echo "Initializing gettext:"
......@@ -646,6 +649,7 @@
echo
echo "Initializing gettext:"
AM_GNU_GETTEXT_VERSION([0.19])
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])
AM_GNU_GETTEXT_VERSION([0.19.6])
AM_GNU_GETTEXT([external])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment