/usr/share/aclocal
NameSizeModeActions
argz.m426150644editdlrm
bison-i18n.m419110644editdlrm
codeset.m47580644editdlrm
fontutil.m4133740644editdlrm
freetype2.m463460644editdlrm
gettext.m4147120644editdlrm
glibc2.m47480644editdlrm
glibc21.m48050644editdlrm
gpg-error.m425140644editdlrm
iconv.m461230644editdlrm
intdiv0.m423290644editdlrm
intl.m4109200644editdlrm
intldir.m49100644editdlrm
intlmacosx.m424210644editdlrm
intmax.m410330644editdlrm
inttypes-pri.m411300644editdlrm
inttypes_h.m49320644editdlrm
lcmessage.m412840644editdlrm
lib-ld.m434170644editdlrm
lib-link.m4297410644editdlrm
lib-prefix.m466860644editdlrm
libgcrypt.m442050644editdlrm
libtool.m42598490644editdlrm
libxml.m478800644editdlrm
libxslt.m481190644editdlrm
lock.m4124350644editdlrm
longlong.m441400644editdlrm
ltdl.m4265850644editdlrm
ltoptions.m4119380644editdlrm
ltsugar.m443720644editdlrm
ltversion.m47030644editdlrm
lt~obsolete.m457070644editdlrm
mysql.m446400644editdlrm
nls.m412060644editdlrm
pkg.m451710644editdlrm
po.m4188220644editdlrm
printf-posix.m414810644editdlrm
progtest.m429200644editdlrm
size_max.m426510644editdlrm
stdint_h.m49080644editdlrm
uintmax_t.m410980644editdlrm
visibility.m421360644editdlrm
wchar_t.m47260644editdlrm
wint_t.m49670644editdlrm
xsize.m44210644editdlrm
yaz.m441060644editdlrm
Edit: /usr/share/aclocal/bison-i18n.m4 (1911B)
# bison-i18n.m4 serial 2 dnl Copyright (C) 2005-2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Support for internationalization of bison-generated parsers. dnl BISON_I18N dnl should be used in configure.ac, after AM_GNU_GETTEXT. If USE_NLS is yes, it dnl sets BISON_LOCALEDIR to indicate where to find the bison-runtime.mo files dnl and defines YYENABLE_NLS if there are bison-runtime.mo files at all. AC_DEFUN([BISON_I18N], [ if test -z "$USE_NLS"; then echo "The BISON-I18N macro is used without being preceded by AM-GNU-GETTEXT." 1>&2 exit 1 fi BISON_LOCALEDIR= BISON_USE_NLS=no if test "$USE_NLS" = yes; then dnl Determine bison's localedir. dnl AC_PROG_YACC sets the YACC variable; other macros set the BISON variable. dnl But even is YACC is called "yacc", it may be a script that invokes bison dnl and accepts the --print-localedir option. dnl YACC's default value is empty; BISON's default value is :. if (${YACC-${BISON-:}} --print-localedir) >/dev/null 2>&1; then BISON_LOCALEDIR=`${YACC-${BISON-:}} --print-localedir` fi AC_SUBST([BISON_LOCALEDIR]) if test -n "$BISON_LOCALEDIR"; then dnl There is no need to enable internationalization if the user doesn't dnl want message catalogs. So look at the language/locale names for dnl which the user wants message catalogs. This is $LINGUAS. If unset dnl or empty, he wants all of them. USER_LINGUAS="${LINGUAS-%UNSET%}" if test -n "$USER_LINGUAS"; then BISON_USE_NLS=yes fi fi fi if test $BISON_USE_NLS = yes; then AC_DEFINE([YYENABLE_NLS], 1, [Define to 1 to internationalize bison runtime messages.]) fi ])