summaryrefslogtreecommitdiffstats
path: root/gl/m4/nls.m4
diff options
context:
space:
mode:
Diffstat (limited to 'gl/m4/nls.m4')
-rw-r--r--gl/m4/nls.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/gl/m4/nls.m4 b/gl/m4/nls.m4
index 7967cc2..0b36434 100644
--- a/gl/m4/nls.m4
+++ b/gl/m4/nls.m4
@@ -1,5 +1,5 @@
1# nls.m4 serial 3 (gettext-0.15) 1# nls.m4 serial 5 (gettext-0.18)
2dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc. 2dnl Copyright (C) 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation 3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it, 4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved. 5dnl with or without modifications, as long as this notice is preserved.
@@ -17,15 +17,15 @@ dnl Authors:
17dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000. 17dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
18dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003. 18dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
19 19
20AC_PREREQ(2.50) 20AC_PREREQ([2.50])
21 21
22AC_DEFUN([AM_NLS], 22AC_DEFUN([AM_NLS],
23[ 23[
24 AC_MSG_CHECKING([whether NLS is requested]) 24 AC_MSG_CHECKING([whether NLS is requested])
25 dnl Default is enabled NLS 25 dnl Default is enabled NLS
26 AC_ARG_ENABLE(nls, 26 AC_ARG_ENABLE([nls],
27 [ --disable-nls do not use Native Language Support], 27 [ --disable-nls do not use Native Language Support],
28 USE_NLS=$enableval, USE_NLS=yes) 28 USE_NLS=$enableval, USE_NLS=yes)
29 AC_MSG_RESULT($USE_NLS) 29 AC_MSG_RESULT([$USE_NLS])
30 AC_SUBST(USE_NLS) 30 AC_SUBST([USE_NLS])
31]) 31])