~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to m4/lcmessage.m4

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# lcmessage.m4 serial 2 (gettext-0.10.40)
 
1
# lcmessage.m4 serial 3 (gettext-0.11.3)
2
2
dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
3
3
dnl This file is free software, distributed under the terms of the GNU
4
4
dnl General Public License.  As a special exception to the GNU General
21
21
# Check whether LC_MESSAGES is available in <locale.h>.
22
22
 
23
23
AC_DEFUN([AM_LC_MESSAGES],
24
 
  [if test $ac_cv_header_locale_h = yes; then
25
 
    AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
26
 
      [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
 
24
[
 
25
  AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
 
26
    [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
27
27
       am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
28
 
    if test $am_cv_val_LC_MESSAGES = yes; then
29
 
      AC_DEFINE(HAVE_LC_MESSAGES, 1,
30
 
        [Define if your <locale.h> file defines LC_MESSAGES.])
31
 
    fi
32
 
  fi])
 
28
  if test $am_cv_val_LC_MESSAGES = yes; then
 
29
    AC_DEFINE(HAVE_LC_MESSAGES, 1,
 
30
      [Define if your <locale.h> file defines LC_MESSAGES.])
 
31
  fi
 
32
])