diff options
author | Guillem Jover <guillem@debian.org> | 2019-09-26 03:45:43 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2019-10-30 22:02:47 +0100 |
commit | 815250d90bf885a86cd7f446609ff8f630431a3c (patch) | |
tree | 3e99b437a9c3399d7d76d2dc99daa15be9eefdeb | |
parent | fe800b66466e6977adf90ba3fefcc0e602b27328 (diff) | |
download | dpkg-815250d90bf885a86cd7f446609ff8f630431a3c.tar.gz |
build: Bump minimal gettext version to 0.19.8
The GNU gettext macros used to check for symbols that were only provided
by the GNU gettext implementation, but not by other implementations such
as the one in musl.
Starting with GNU gettext 0.19.8 these internal symbols are not required
anymore.
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bb51ed0e7..a0bc4cf0a 100644 --- a/configure.ac +++ b/configure.ac @@ -28,7 +28,7 @@ AM_INIT_AUTOMAKE( AM_SILENT_RULES([yes]) # Require at least this gettext version, but will take any later version too. -AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.7]) +AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8]) # XXX: We cannot remove the following macro due to backwards compatibility # reasons. The above macro is set unconditionally to the minimal version # required, and the below is set to 0.19.6, the first version introducing diff --git a/debian/changelog b/debian/changelog index 0ce7966fe..cc0c59ffa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -58,6 +58,8 @@ dpkg (1.20.0) UNRELEASED; urgency=medium - Bump minimal Perl version to 5.24.1. - Add a serial versioning to the m4 files. - Install m4 files into system aclocal directory. + - Bump minimal gettext version to 0.19.8, to get the m4 files that can + cross-build for musl-based systems. * Packaging: - Remove obsolete Breaks satisfied since oldstable. * Test suite: |