/usr/share/aclocal
NameSizeModeActions
bison-i18n.m419240644editdlrm
codeset.m48420644editdlrm
dovecot-pigeonhole.m418950644editdlrm
extern-inline.m443680644editdlrm
fcntl-o.m446680644editdlrm
fontutil.m4141600644editdlrm
freetype2.m463330644editdlrm
gettext.m4158590644editdlrm
glibc2.m48300644editdlrm
glibc21.m49070644editdlrm
gpg-error.m447570644editdlrm
gpgrt.m447170644editdlrm
iconv.m492740644editdlrm
intdiv0.m424110644editdlrm
intl.m4121200644editdlrm
intldir.m49170644editdlrm
intlmacosx.m425330644editdlrm
intmax.m411230644editdlrm
inttypes-pri.m412530644editdlrm
inttypes_h.m410200644editdlrm
lcmessage.m413650644editdlrm
lib-ld.m436830644editdlrm
lib-link.m4330590644editdlrm
lib-prefix.m484660644editdlrm
libgcrypt.m462370644editdlrm
libtool.m43058620644editdlrm
libxml.m478810644editdlrm
libxslt.m481190644editdlrm
lock.m414630644editdlrm
longlong.m447390644editdlrm
ltargz.m425690644editdlrm
ltdl.m4300300644editdlrm
ltoptions.m4145140644editdlrm
ltsugar.m443840644editdlrm
ltversion.m46990644editdlrm
lt~obsolete.m461400644editdlrm
mysql.m442210644editdlrm
nls.m412230644editdlrm
pkg.m4126700644editdlrm
po.m4189690644editdlrm
printf-posix.m415790644editdlrm
progtest.m430920644editdlrm
size_max.m430640644editdlrm
stdint_h.m49950644editdlrm
threadlib.m4151510644editdlrm
uintmax_t.m411130644editdlrm
visibility.m433510644editdlrm
wchar_t.m48180644editdlrm
wint_t.m410530644editdlrm
xsize.m44060644editdlrm
Edit: /usr/share/aclocal/lcmessage.m4 (1365B)
# lcmessage.m4 serial 7 (gettext-0.18.2) dnl Copyright (C) 1995-2002, 2004-2005, 2008-2014, 2016 Free Software dnl 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 dnl This file can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995. # Check whether LC_MESSAGES is available in . AC_DEFUN([gt_LC_MESSAGES], [ AC_CACHE_CHECK([for LC_MESSAGES], [gt_cv_val_LC_MESSAGES], [AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[return LC_MESSAGES]])], [gt_cv_val_LC_MESSAGES=yes], [gt_cv_val_LC_MESSAGES=no])]) if test $gt_cv_val_LC_MESSAGES = yes; then AC_DEFINE([HAVE_LC_MESSAGES], [1], [Define if your file defines LC_MESSAGES.]) fi ])