From: Bruno Haible Date: Sun, 16 May 2004 15:38:36 +0000 (+0000) Subject: Rename AM_LC_MESSAGES to gt_LC_MESSAGES. X-Git-Tag: v0.14.2~259 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c9a0203dc4d49a585c5d3e98cc1e018d0bda074;p=thirdparty%2Fgettext.git Rename AM_LC_MESSAGES to gt_LC_MESSAGES. --- diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog index 29bb09d41..8b5aae51f 100644 --- a/gettext-runtime/m4/ChangeLog +++ b/gettext-runtime/m4/ChangeLog @@ -1,3 +1,9 @@ +2004-05-16 Bruno Haible + + * lcmessage.m4 (gt_LC_MESSAGES): Renamed from AM_LC_MESSAGES. + * gettext.m4 (AM_INTL_SUBDIR): Update. + Suggested by Alexandre Duret-Lutz. + 2004-04-19 Bruno Haible * gettext.m4: Change jm_ to gl_ in AC_DEFINE'd names. Update all uses. diff --git a/gettext-runtime/m4/gettext.m4 b/gettext-runtime/m4/gettext.m4 index d576fef20..8c3defb5e 100644 --- a/gettext-runtime/m4/gettext.m4 +++ b/gettext-runtime/m4/gettext.m4 @@ -1,4 +1,4 @@ -# gettext.m4 serial 30 (gettext-0.15) +# gettext.m4 serial 31 (gettext-0.15) dnl Copyright (C) 1995-2004 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General @@ -428,7 +428,7 @@ __fsetlocking]) AM_ICONV AM_LANGINFO_CODESET if test $ac_cv_header_locale_h = yes; then - AM_LC_MESSAGES + gt_LC_MESSAGES fi dnl intl/plural.c is generated from intl/plural.y. It requires bison, diff --git a/gettext-runtime/m4/lcmessage.m4 b/gettext-runtime/m4/lcmessage.m4 index ffd4008b8..6e06e438e 100644 --- a/gettext-runtime/m4/lcmessage.m4 +++ b/gettext-runtime/m4/lcmessage.m4 @@ -1,5 +1,5 @@ -# lcmessage.m4 serial 3 (gettext-0.11.3) -dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. +# lcmessage.m4 serial 4 (gettext-0.15) +dnl Copyright (C) 1995-2002, 2004 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program @@ -20,12 +20,12 @@ dnl Ulrich Drepper , 1995. # Check whether LC_MESSAGES is available in . -AC_DEFUN([AM_LC_MESSAGES], +AC_DEFUN([gt_LC_MESSAGES], [ - AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, + AC_CACHE_CHECK([for LC_MESSAGES], gt_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], - am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) - if test $am_cv_val_LC_MESSAGES = yes; then + 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