~ubuntu-branches/debian/experimental/mednafen/experimental

« back to all changes in this revision

Viewing changes to m4/nls.m4

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-01-31 07:21:35 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20120131072135-es3dj12y00xcnrsk
Tags: 0.9.19-1
* New upstream WIP version.
* Update copyright information.
* Refresh use-system-tremor.patch and remove psx-big-endian-only.patch.
* Add spelling-fixes.patch based on Lintian's recommendations.
* Build-depend on debhelper 9 or later and remove corresponding Lintian
  override.

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
])