~ubuntu-branches/ubuntu/oneiric/pam/oneiric-proposed

« back to all changes in this revision

Viewing changes to m4/isc-posix.m4

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-02-17 16:15:47 UTC
  • mfrom: (3.2.15 sid)
  • Revision ID: james.westby@ubuntu.com-20110217161547-afxi0yboxvn18a5t
Tags: 1.1.2-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - debian/libpam-modules.postinst: Add PATH to /etc/environment if it's
    not present there or in /etc/security/pam_env.conf. (should send to
    Debian).
  - debian/libpam0g.postinst: only ask questions during update-manager when
    there are non-default services running.
  - debian/patches-applied/series: Ubuntu patches are as below ...
  - debian/patches-applied/ubuntu-rlimit_nice_correction: Explicitly
    initialise RLIMIT_NICE rather than relying on the kernel limits.
  - Change Vcs-Bzr to point at the Ubuntu branch.
  - debian/patches-applied/pam_motd-legal-notice: display the contents of
    /etc/legal once, then set a flag in the user's homedir to prevent
    showing it again.
  - debian/update-motd.5, debian/libpam-modules.manpages: add a manpage
    for update-motd, with some best practices and notes of explanation.
  - debian/patches/update-motd-manpage-ref: add a reference in pam_motd(8)
    to update-motd(5)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# isc-posix.m4 serial 2 (gettext-0.11.2)
2
 
dnl Copyright (C) 1995-2002 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
 
 
7
 
# This file is not needed with autoconf-2.53 and newer.  Remove it in 2005.
8
 
 
9
 
# This test replaces the one in autoconf.
10
 
# Currently this macro should have the same name as the autoconf macro
11
 
# because gettext's gettext.m4 (distributed in the automake package)
12
 
# still uses it.  Otherwise, the use in gettext.m4 makes autoheader
13
 
# give these diagnostics:
14
 
#   configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
15
 
#   configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
16
 
 
17
 
undefine([AC_ISC_POSIX])
18
 
 
19
 
AC_DEFUN([AC_ISC_POSIX],
20
 
  [
21
 
    dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
22
 
    AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
23
 
  ]
24
 
)