diff options
author | Daiki Ueno <ueno@gnu.org> | 2020-06-08 06:45:24 +0200 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2020-06-08 06:49:52 +0200 |
commit | 5ccfeead47c1eb4ca9dceb5d0219a7296fb0d21a (patch) | |
tree | e7245dceda707d1dd4d40e3371854671d05c711b | |
parent | 01876f9d7085ebdac474e816a39bc47f2d8451de (diff) | |
download | gnutls-5ccfeead47c1eb4ca9dceb5d0219a7296fb0d21a.tar.gz |
configure.ac: prefer the latest version of build infrastructuretmp-gettext
AM_GNU_GETTEXT_REQUIRE_VERSION tells autopoint to copy the latest
possible build infrastructure installed on the system, rather than the
fixed version from the archive.dir.tar.xz. This makes the
bootstrapping slightly faster and allows us not to stick with the
ancient gettext version.
Signed-off-by: Daiki Ueno <ueno@gnu.org>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index e4ca66aecb..12c29b4a78 100644 --- a/configure.ac +++ b/configure.ac @@ -347,6 +347,9 @@ AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], false) AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.19]) +m4_ifdef([AM_GNU_GETTEXT_REQUIRE_VERSION],[ +AM_GNU_GETTEXT_REQUIRE_VERSION([0.19]) +]) AC_C_BIGENDIAN |