]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Rename AM_LC_MESSAGES to gt_LC_MESSAGES.
authorBruno Haible <bruno@clisp.org>
Sun, 16 May 2004 15:38:36 +0000 (15:38 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:11:52 +0000 (12:11 +0200)
gettext-runtime/m4/ChangeLog
gettext-runtime/m4/gettext.m4
gettext-runtime/m4/lcmessage.m4

index 29bb09d41299ccc743c80aed36d33c19f62333c4..8b5aae51f4fd944bd09de10a2f55d990946935f6 100644 (file)
@@ -1,3 +1,9 @@
+2004-05-16  Bruno Haible  <bruno@clisp.org>
+
+       * 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  <bruno@clisp.org>
 
        * gettext.m4: Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
index d576fef2089f779b12d3a3242c9efffce8748f35..8c3defb5e8f95e9d66ecad1e316bed5eae3b5e13 100644 (file)
@@ -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,
index ffd4008b8252a44bbbba1c30e167da2cc2a2a8c9..6e06e438e6e9e96c4909704fd93c8cb191219565 100644 (file)
@@ -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 <drepper@cygnus.com>, 1995.
 
 # Check whether LC_MESSAGES is available in <locale.h>.
 
-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 <locale.h>], [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 <locale.h> file defines LC_MESSAGES.])
   fi