1932360adc
runscript used to dlopen() runscript_selinux.so. This adds equivalent functionality directly in to runscript instead. It authenticates with either PAM or shadow and optionally has a dep on audit. X-Gentoo-Bug: 517450 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=517450
28 lines
518 B
Makefile
28 lines
518 B
Makefile
# Copyright (c) 2008 Roy Marples <roy@marples.name>
|
|
# Released under the 2-clause BSD license.
|
|
|
|
SFX= .Linux.in
|
|
PKG_PREFIX?= /usr
|
|
|
|
CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=700
|
|
LIBDL= -Wl,-Bdynamic -ldl
|
|
|
|
ifeq (${MKSELINUX},yes)
|
|
CPPFLAGS+= -DHAVE_SELINUX
|
|
LIBSELINUX?= -lselinux
|
|
LDADD += $(LIBSELINUX)
|
|
|
|
ifneq (${MKPAM},pam)
|
|
# if using selinux but not pam then we need crypt
|
|
LIBCRYPT?= -lcrypt
|
|
LDADD += $(LIBCRYPT)
|
|
endif
|
|
|
|
endif
|
|
|
|
ifeq (${MKAUDIT},yes)
|
|
LIBAUDIT?= -laudit
|
|
CPPFLAGS+= -DHAVE_AUDIT
|
|
LDADD+= ${LIBAUDIT}
|
|
endif
|