diff options
author | Alan Modra <amodra@gmail.com> | 2017-11-06 21:30:12 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-11-07 15:56:44 +1030 |
commit | f3ce9b3a00229e5c6087180a74bf533d0e5201f3 (patch) | |
tree | 96870046836563479d8fbb147d6533709155168c /intl/configure.ac | |
parent | 6003e27e764ff62c1269a3ac6b5806b3fa3a1740 (diff) | |
download | gdb-f3ce9b3a00229e5c6087180a74bf533d0e5201f3.zip gdb-f3ce9b3a00229e5c6087180a74bf533d0e5201f3.tar.gz gdb-f3ce9b3a00229e5c6087180a74bf533d0e5201f3.tar.bz2 |
Require ngettext in test of system gettext implementation
If binutils is going to use ngettext, then we'd better arrange for
intl/ to be compiled if the system gettext lacks ngettext.
* configure.ac: Invole AM_GNU_GETTEXT with need_ngettext.
* configure: Regenerate.
* aclocal.m4: Regenerate.
Diffstat (limited to 'intl/configure.ac')
-rw-r--r-- | intl/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intl/configure.ac b/intl/configure.ac index 698c330..36cf97f 100644 --- a/intl/configure.ac +++ b/intl/configure.ac @@ -4,7 +4,7 @@ AC_CONFIG_SRCDIR(gettext.c) AC_CONFIG_HEADER(config.h) AC_CONFIG_MACRO_DIR(../config) AM_GNU_GETTEXT_VERSION(0.12.1) -AM_GNU_GETTEXT +AM_GNU_GETTEXT([], [need-ngettext]) # This replaces the extensive use of DEFS in the original Makefile.in. AC_DEFINE(IN_LIBINTL, 1, [Define because this is libintl.]) |