annotate m4/nls.m4 @ 40196:e63f5d3edab5

relocatable-prog: Update documentation. * doc/relocatable-maint.texi (Supporting Relocation): Update to match the recent changes.
author Bruno Haible <bruno@clisp.org>
date Sun, 24 Feb 2019 01:49:15 +0100
parents b06060465f09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11007
f6cba5a556ce many *.m4 files: improve m4 quoting
Jim Meyering <meyering@redhat.com>
parents: 10979
diff changeset
1 # nls.m4 serial 5 (gettext-0.18)
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 18636
diff changeset
2 dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016, 2019 Free Software
18331
c478decf757f autoupdate (gettext-0.19.8.1)
Karl Berry <karl@freefriends.org>
parents: 18209
diff changeset
3 dnl Foundation, Inc.
5659
be44f23226e0 Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents: 4335
diff changeset
4 dnl This file is free software; the Free Software Foundation
be44f23226e0 Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents: 4335
diff changeset
5 dnl gives unlimited permission to copy and/or distribute it,
be44f23226e0 Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents: 4335
diff changeset
6 dnl with or without modifications, as long as this notice is preserved.
4335
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 dnl
18187
0c6cc662fcc1 autoupdate
Karl Berry <karl@freefriends.org>
parents: 17954
diff changeset
8 dnl This file can be used in projects which are not available under
4335
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 dnl the GNU General Public License or the GNU Library General Public
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 dnl License but which still want to provide support for the GNU gettext
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 dnl functionality.
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 dnl Please note that the actual code of the GNU gettext library is covered
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 dnl by the GNU Library General Public License, and the rest of the GNU
18187
0c6cc662fcc1 autoupdate
Karl Berry <karl@freefriends.org>
parents: 17954
diff changeset
14 dnl gettext package is covered by the GNU General Public License.
4335
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 dnl They are *not* in the public domain.
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 dnl Authors:
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
11007
f6cba5a556ce many *.m4 files: improve m4 quoting
Jim Meyering <meyering@redhat.com>
parents: 10979
diff changeset
21 AC_PREREQ([2.50])
5700
eea92bfb3f7d Upgrade to GNU gettext 0.14.3.
Bruno Haible <bruno@clisp.org>
parents: 5659
diff changeset
22
4335
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 AC_DEFUN([AM_NLS],
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 [
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 AC_MSG_CHECKING([whether NLS is requested])
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 dnl Default is enabled NLS
11007
f6cba5a556ce many *.m4 files: improve m4 quoting
Jim Meyering <meyering@redhat.com>
parents: 10979
diff changeset
27 AC_ARG_ENABLE([nls],
4335
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 [ --disable-nls do not use Native Language Support],
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 USE_NLS=$enableval, USE_NLS=yes)
11007
f6cba5a556ce many *.m4 files: improve m4 quoting
Jim Meyering <meyering@redhat.com>
parents: 10979
diff changeset
30 AC_MSG_RESULT([$USE_NLS])
10979
03e819eea554 More systematic m4 argument quoting.
Bruno Haible <bruno@clisp.org>
parents: 7006
diff changeset
31 AC_SUBST([USE_NLS])
4335
3cb468809e1f Upgrade to gettext-0.12.1.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 ])