diff options
author | Steve Langasek <vorlon@debian.org> | 2013-02-11 21:30:41 -0800 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 22:11:50 -0800 |
commit | b8c12448f1d6474475d2d98dc6aaa003db14b8b7 (patch) | |
tree | 11cc65c3534f2f9db901ac1a8146f2f5a8fc36d1 | |
parent | 8787541fd57a2f18e312f7fcd57b4992d33eb098 (diff) | |
download | pam-b8c12448f1d6474475d2d98dc6aaa003db14b8b7.tar.gz pam-b8c12448f1d6474475d2d98dc6aaa003db14b8b7.tar.bz2 pam-b8c12448f1d6474475d2d98dc6aaa003db14b8b7.zip |
Enable audit support, by popular demand. This should have no major
impact unless you're also running auditd; but I reserve the right to
disable this again in the event that this causes a performance hit or
breaks upgrades (since the dependency is pulled into libpam, not just
into pam_tty_audit). Closes: #699159, LP: #937005.
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index a19753b3..0acce661 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,11 @@ pam (1.1.3-8) UNRELEASED; urgency=low to the correct binary package. Closes: #648695. * Update lintian overrides to suppress some noise about hardening and manpages. + * Enable audit support, by popular demand. This should have no major + impact unless you're also running auditd; but I reserve the right to + disable this again in the event that this causes a performance hit or + breaks upgrades (since the dependency is pulled into libpam, not just + into pam_tty_audit). Closes: #699159, LP: #937005. -- Steve Langasek <vorlon@debian.org> Mon, 11 Feb 2013 19:00:19 -0800 diff --git a/debian/control b/debian/control index f3ee8bd9..a299e549 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Uploaders: Sam Hartman <hartmans@debian.org>, Roger Leigh <rleigh@debian.org> Maintainer: Steve Langasek <vorlon@debian.org> Standards-Version: 3.9.1 -Build-Depends: libcrack2-dev (>= 2.8), bzip2, debhelper (>= 8.9.4), quilt (>= 0.48-1), flex, libdb-dev, libselinux1-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64 !netbsd-i386], po-debconf, dh-autoreconf, autopoint +Build-Depends: libcrack2-dev (>= 2.8), bzip2, debhelper (>= 8.9.4), quilt (>= 0.48-1), flex, libdb-dev, libselinux1-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64 !netbsd-i386], po-debconf, dh-autoreconf, autopoint, libaudit-dev Build-Depends-Indep: xsltproc, libxml2-utils, docbook-xml, docbook-xsl, w3m Build-Conflicts-Indep: fop Build-Conflicts: libdb4.2-dev, libxcrypt-dev diff --git a/debian/rules b/debian/rules index 5a9cb037..ac2ffab7 100755 --- a/debian/rules +++ b/debian/rules @@ -20,8 +20,7 @@ dl = $(d)/local override_dh_auto_configure: dh_auto_configure -- --enable-static --enable-shared \ --libdir=/lib/$(DEB_HOST_MULTIARCH) \ - --enable-isadir=/lib/security --disable-audit \ - --disable-regenerate-docu + --enable-isadir=/lib/security --disable-regenerate-docu # make sure the SAG, MWG, ADG are readable with a browser. override_dh_compress: |