diff options
author | Bruno Haible <bruno@clisp.org> | 2001-03-11 16:14:05 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2001-03-11 16:14:05 +0000 |
commit | 23f4da6ffcadfa9b0afe2ca0635150d1f4bcc65a (patch) | |
tree | dfac0b9fbdb4ca2266385a669b5b552cc2c44f15 /m4 | |
parent | ce399ceaaca9987b1cc1a43759724328a721cc0e (diff) | |
download | external_gettext-23f4da6ffcadfa9b0afe2ca0635150d1f4bcc65a.zip external_gettext-23f4da6ffcadfa9b0afe2ca0635150d1f4bcc65a.tar.gz external_gettext-23f4da6ffcadfa9b0afe2ca0635150d1f4bcc65a.tar.bz2 |
Add an optional 'need-ngettext' parameter, used to ignore pre-ngettext versions
of GNU gettext.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ChangeLog | 5 | ||||
-rw-r--r-- | m4/gettext.m4 | 17 |
2 files changed, 17 insertions, 5 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index 3e6b821..2780a2d 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,8 @@ +2001-03-11 Bruno Haible <haible@clisp.cons.org> + + * gettext.m4 (AM_WITH_NLS): Accept a second argument 'need-ngettext'. + If it is given, check for the presence of ngettext() as well. + 2001-03-10 Bruno Haible <haible@clisp.cons.org> * signed.m4: Quote first argument of AC_DEFUN. diff --git a/m4/gettext.m4 b/m4/gettext.m4 index ab3f0fe..606d417 100644 --- a/m4/gettext.m4 +++ b/m4/gettext.m4 @@ -8,12 +8,15 @@ # serial 8 -dnl Usage: AM_WITH_NLS([SYMBOL], [LIBDIR]). -dnl If SYMBOL is specified and is 'use-libtool', then a libtool library +dnl Usage: AM_WITH_NLS([TOOLSYMBOL], [NEEDSYMBOL], [LIBDIR]). +dnl If TOOLSYMBOL is specified and is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM_DISABLE_SHARED). Otherwise, a static library dnl $(top_builddir)/intl/libintl.a will be created. +dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext +dnl implementations (in libc or libintl) without the ngettext() function +dnl will be ignored. dnl LIBDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl @@ -64,12 +67,16 @@ AC_DEFUN([AM_WITH_NLS], dnl to fall back to GNU NLS library. CATOBJEXT=NONE + dnl Add a version number to the cache macros. + define(gt_cv_func_gnugettext_libc, [gt_cv_func_gnugettext]ifelse([$2], need-ngettext, 2, 1)[_libc]) + define(gt_cv_func_gnugettext_libintl, [gt_cv_func_gnugettext]ifelse([$2], need-ngettext, 2, 1)[_libintl]) + AC_CHECK_HEADER(libintl.h, [AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, [AC_TRY_LINK([#include <libintl.h> extern int _nl_msg_cat_cntr;], [bindtextdomain ("", ""); -return (int) gettext ("") + _nl_msg_cat_cntr], +return (int) gettext ("")]ifelse([$2], need-ngettext, [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr], gt_cv_func_gnugettext_libc=yes, gt_cv_func_gnugettext_libc=no)]) @@ -81,7 +88,7 @@ return (int) gettext ("") + _nl_msg_cat_cntr], AC_TRY_LINK([#include <libintl.h> extern int _nl_msg_cat_cntr;], [bindtextdomain ("", ""); -return (int) gettext ("") + _nl_msg_cat_cntr], +return (int) gettext ("")]ifelse([$2], need-ngettext, [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr], gt_cv_func_gnugettext_libintl=yes, gt_cv_func_gnugettext_libintl=no) LIBS="$gt_save_LIBS"]) @@ -125,7 +132,7 @@ return (int) gettext ("") + _nl_msg_cat_cntr], BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes CATOBJEXT=.gmo - INTLLIBS='ifelse([$2],[],$(top_builddir)/intl,[$2])/libintl.ifelse([$1], use-libtool, [l], [])a' + INTLLIBS='ifelse([$3],[],$(top_builddir)/intl,[$3])/libintl.ifelse([$1], use-libtool, [l], [])a' LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi |