~drizzle-trunk/drizzle/7.2

« back to all changes in this revision

Viewing changes to m4/nls.m4

  • Committer: Continuous Integration
  • Date: 2013-04-27 20:03:58 UTC
  • mfrom: (2633.1.11 drizzle-7.2)
  • Revision ID: ci@drizzle.org-20130427200358-77r6140iqb0orc1o
Merge lp:~brianaker/drizzle/update-bootstrap-april-20113/ Build: jenkins-Drizzle-Builder-192

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# nls.m4 serial 3 (gettext-0.15)
2
 
dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
 
1
# nls.m4 serial 5 (gettext-0.18)
 
2
dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation,
 
3
dnl Inc.
3
4
dnl This file is free software; the Free Software Foundation
4
5
dnl gives unlimited permission to copy and/or distribute it,
5
6
dnl with or without modifications, as long as this notice is preserved.
17
18
dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
18
19
dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
19
20
 
20
 
AC_PREREQ(2.50)
 
21
AC_PREREQ([2.50])
21
22
 
22
23
AC_DEFUN([AM_NLS],
23
24
[
24
25
  AC_MSG_CHECKING([whether NLS is requested])
25
26
  dnl Default is enabled NLS
26
 
  AC_ARG_ENABLE(nls,
 
27
  AC_ARG_ENABLE([nls],
27
28
    [  --disable-nls           do not use Native Language Support],
28
29
    USE_NLS=$enableval, USE_NLS=yes)
29
 
  AC_MSG_RESULT($USE_NLS)
30
 
  AC_SUBST(USE_NLS)
 
30
  AC_MSG_RESULT([$USE_NLS])
 
31
  AC_SUBST([USE_NLS])
31
32
])