diff options
author | Jim Meyering <meyering@redhat.com> | 2009-11-13 18:02:16 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-11-13 18:02:16 +0100 |
commit | fd4400ac4b0664b1482a864c18d3ab2a3483f108 (patch) | |
tree | 180bc73d4b66da85b71fa71055f9e57d6889454b | |
parent | 864fb94b9c2653c41d34047c88c078cedd8d8e73 (diff) | |
download | idutils-fd4400ac4b0664b1482a864c18d3ab2a3483f108.tar.gz idutils-fd4400ac4b0664b1482a864c18d3ab2a3483f108.tar.bz2 idutils-fd4400ac4b0664b1482a864c18d3ab2a3483f108.zip |
build: correct gettext configure-time support
* configure.ac: Use AM_GNU_GETTEXT([external], [need-ngettext]),
rather than AM_GNU_GETTEXT([external], [need-formatstring-macros]).
Reported by Martin Jacobs in
http://thread.gmane.org/gmane.comp.parsers.bison.bugs/3181
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 657c58a..6011020 100644 --- a/configure.ac +++ b/configure.ac @@ -102,7 +102,7 @@ AC_TYPE_OFF_T AC_TYPE_SIZE_T AC_CHECK_TYPES(ptrdiff_t) -AM_GNU_GETTEXT([external], [need-formatstring-macros]) +AM_GNU_GETTEXT([external], [need-ngettext]) AM_GNU_GETTEXT_VERSION([0.15]) AC_CONFIG_FILES([ |