aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-05-04 08:23:25 +0200
committerGuido Günther <agx@sigxcpu.org>2010-05-04 08:23:25 +0200
commitd6b65b8f550479405ee40854882867dd109d7b96 (patch)
tree94a0316253c03b37461b7df2fd5e9bef5d116ac8 /debian
parentMerge commit 'upstream/0.16.rc1' (diff)
downloadkrb5-auth-dialog-d6b65b8f550479405ee40854882867dd109d7b96.tar.gz
krb5-auth-dialog-d6b65b8f550479405ee40854882867dd109d7b96.tar.bz2
krb5-auth-dialog-d6b65b8f550479405ee40854882867dd109d7b96.zip
Enable PAM plugin
Diffstat (limited to 'debian')
-rw-r--r--debian/control3
-rwxr-xr-xdebian/rules8
2 files changed, 6 insertions, 5 deletions
diff --git a/debian/control b/debian/control
index bc17a5d..c1db9f2 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,8 @@ Build-Depends: debhelper (>= 6), cdbs, heimdal-dev (>= 1.3.1.dfsg.1-5), libgtk2.
libglade2-dev, intltool, libgnomeui-dev, autotools-dev, libnm-glib-dev, gnome-common,
autoconf, automake, pkg-config, intltool, bison, flex, libnotify-dev, libgconf2-dev,
libdbus-glib-1-dev, gnome-doc-utils, rarian-compat,
- quilt
+ quilt,
+ libpam0g-dev
Standards-Version: 3.8.4
Vcs-Git: git://git.debian.org/git/users/agx/krb5-auth-dialog.git
Vcs-Browser: http://git.debian.org/git/users/agx/krb5-auth-dialog.git
diff --git a/debian/rules b/debian/rules
index ec02057..a71a5ea 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,7 +8,7 @@ include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/rules/patchsys-quilt.mk
DEB_BUILDDIR := build
-DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/usr --enable-network-manager --with-libnotify
-
-#post-patches::
-# cd build && ../autogen.sh
+DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/usr \
+ --enable-network-manager \
+ --with-libnotify \
+ --with-pam
bgstack15