~ubuntu-branches/ubuntu/lucid/pam/lucid

« back to all changes in this revision

Viewing changes to modules/pam_userdb/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2010-02-01 09:55:02 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100201095502-w39gpsnno205tkqo
Tags: 1.1.1-1ubuntu1
* Merge from Debian, 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-no-error-if-missingok: add a new, magic
    module option 'missingok' which will suppress logging of errors by
    libpam if the module is not found.
  - 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.
  - Make libpam-modules depend on base-files (>= 5.0.0ubuntu6), to ensure
    run-parts does the right thing in /etc/update-motd.d.
  - 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/local/common-{auth,account,password}.md5sums: include the
    Ubuntu-specific intrepid,jaunty md5sums for use during the
    common-session-noninteractive upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# Copyright (c) 2005, 2006 Thorsten Kukuk <kukuk@suse.de>
 
2
# Copyright (c) 2005, 2006, 2009 Thorsten Kukuk <kukuk@thkukuk.de>
3
3
#
4
4
 
5
5
CLEANFILES = *~
6
 
 
7
 
EXTRA_DIST = README $(MANS) $(XMLS) create.pl tst-pam_userdb
8
 
 
9
 
man_MANS = pam_userdb.8
 
6
MAINTAINERCLEANFILES = $(MANS) README
 
7
 
 
8
EXTRA_DIST = README $(XMLS) pam_userdb.8 create.pl tst-pam_userdb
 
9
 
 
10
if HAVE_LIBDB
 
11
  man_MANS = pam_userdb.8
 
12
  TESTS = tst-pam_userdb
 
13
endif
 
14
 
10
15
XMLS = README.xml pam_userdb.8.xml
11
16
 
12
17
securelibdir = $(SECUREDIR)
21
26
 
22
27
if HAVE_LIBDB
23
28
  securelib_LTLIBRARIES = pam_userdb.la
24
 
  TESTS = tst-pam_userdb
25
29
endif
26
30
 
27
31
noinst_HEADERS = pam_userdb.h
28
32
 
29
33
if ENABLE_REGENERATE_MAN
30
 
noinst_DATA = README
 
34
noinst_DATA = README pam_userdb.8
31
35
README: pam_userdb.8.xml
32
36
-include $(top_srcdir)/Make.xml.rules
33
37
endif