~ubuntu-branches/debian/stretch/pam/stretch

« back to all changes in this revision

Viewing changes to m4/lcmessage.m4

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-02-15 23:21:41 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110215232141-yg5ttedznim6mbgm
Tags: 1.1.2-1
* New upstream release.
  - Add support for NSS groups to pam_group.  Closes: #589019,
    LP: #297408.
  - Support cross-building the package.  Thanks to Neil Williams
    <codehelp@debian.org> for the patch.  Closes: #284854.   
* debian/rules: pass getconf LFS_CFLAGS so that we get a 64-bit rlimit
  interface.  Closes: #579402.
* Drop patches conditional_module,_conditional_man and
  mkhomedir_linking.patch, which are included upstream.
* debian/patches/hurd_no_setfsuid: pam_env and pam_mail now also use
  setfsuid, so patch them to be likewise Hurd-safe.
* Update debian/source.lintian-overrides to clean up some spurious
  warnings.
* debian/libpam-modules.postinst: if any 'min=n' options are found in
  /etc/pam.d/common-password, convert them on upgrade to 'minlen=n' for
  compatibility with upstream.
* debian/NEWS: document the disappearance of 'min=n', in case users have
  encoded this option elsewhere outside of /etc/pam.d/common-password.
* debian/patches/007_modules_pam_unix: drop compatibility handling of
  'max=' no-op; use of this option will now log an error, as warned three
  years ago.
* Bump Standards-Version to 3.9.1.
* Add lintian overrides for a few more spurious warnings.
* debian/patches-applied/no_PATH_MAX_on_hurd: define PATH_MAX for
  compatibility when it's not already set.  Closes: #552043.
* debian/local/pam-auth-update: Don't try to pass embedded newlines to
  debconf; backslash-escape them instead and use CAPB escape.
* debian/local/pam-auth-update: sort additional module options before
  writing them out, so that we don't wind up with a different config file
  on every invocation.  Thanks to Jim Paris <jim@jtan.com> for the patch.
  Closes: #594123.
* debian/libpam-runtime.{postinst,templates}: since 1.1.2-1 is targeted
  for post-squeeze, we don't need to support upgrades from 1.0.1-6 to
  1.0.1-10 anymore.  Drop the debconf error note about having configured
  your system with a lack of authentication, so that translators don't
  spend any more time on it.
* Updated debconf translations:
  - Swedish, thanks to Martin Bagge <brother@bsnet.se> (closes: #575875)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# lcmessage.m4 serial 4 (gettext-0.14.2)
2
 
dnl Copyright (C) 1995-2002, 2004-2005 Free Software Foundation, Inc.
3
 
dnl This file is free software; the Free Software Foundation
4
 
dnl gives unlimited permission to copy and/or distribute it,
5
 
dnl with or without modifications, as long as this notice is preserved.
6
 
dnl
7
 
dnl This file can can be used in projects which are not available under
8
 
dnl the GNU General Public License or the GNU Library General Public
9
 
dnl License but which still want to provide support for the GNU gettext
10
 
dnl functionality.
11
 
dnl Please note that the actual code of the GNU gettext library is covered
12
 
dnl by the GNU Library General Public License, and the rest of the GNU
13
 
dnl gettext package package is covered by the GNU General Public License.
14
 
dnl They are *not* in the public domain.
15
 
 
16
 
dnl Authors:
17
 
dnl   Ulrich Drepper <drepper@cygnus.com>, 1995.
18
 
 
19
 
# Check whether LC_MESSAGES is available in <locale.h>.
20
 
 
21
 
AC_DEFUN([gt_LC_MESSAGES],
22
 
[
23
 
  AC_CACHE_CHECK([for LC_MESSAGES], gt_cv_val_LC_MESSAGES,
24
 
    [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
25
 
       gt_cv_val_LC_MESSAGES=yes, gt_cv_val_LC_MESSAGES=no)])
26
 
  if test $gt_cv_val_LC_MESSAGES = yes; then
27
 
    AC_DEFINE(HAVE_LC_MESSAGES, 1,
28
 
      [Define if your <locale.h> file defines LC_MESSAGES.])
29
 
  fi
30
 
])