6319ad282f
successful and failed su attempts will be recorded using the AUE_su event type (login or lo class) if auditing is present in the system. Currently, the records will have a header, subject, text (with the actual diagnostics), a return and trailer token. See audit_submit(3) for more information. Reviewed by: rwatson Obtained from: TrustedBSD Project
22 lines
295 B
Makefile
22 lines
295 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= su
|
|
|
|
DPADD= ${LIBUTIL} ${LIBPAM}
|
|
LDADD= -lutil ${MINUSLPAM}
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
DPADD+= ${LIBBSM}
|
|
LDADD+= -lbsm
|
|
.endif
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
PRECIOUSPROG=
|
|
|
|
.include <bsd.prog.mk>
|