diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index 6256182..ad27cdf 100755 --- a/debian/rules +++ b/debian/rules @@ -5,26 +5,34 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk +include /usr/share/debhelper/dh_package_notes/package-notes.mk # Adds extra options when calling the configure script: -DEB_CONFIGURE_EXTRA_FLAGS := --without-libcrack \ +DEB_CONFIGURE_EXTRA_FLAGS := \ --mandir=/usr/share/man \ --with-libpam \ --with-yescrypt \ --enable-shadowgrp \ + --enable-lastlog=no \ --enable-man \ --disable-account-tools-setuid \ --with-group-name-max-length=32 \ - --without-acl \ - --without-attr \ + --with-acl \ + --with-attr \ --without-su \ --without-tcb \ - SHELL=/bin/sh + + +ifneq ($(DEB_HOST_ARCH_OS),linux) +DEB_CONFIGURE_EXTRA_FLAGS += --enable-logind +endif ifneq ($(filter nodoc,$(DEB_BUILD_PROFILES)),) DEB_CONFIGURE_EXTRA_FLAGS += --disable-man endif +DEB_CONFIGURE_EXTRA_FLAGS += SHELL=/bin/sh + # Set the default editor for vipw/vigr CFLAGS += -DDEFAULT_EDITOR="\"sensible-editor\"" |