f4e380b0ce
- Remove "audit" user example from audit_user, as it's not present on most systems. - Add cannot_audit() function non-Darwin systems that wraps auditon(); required by OpenSSH BSM support. Convert Darwin cannot_audit() into a function rather than a macro. - Library build fixed on Darwin following include file tweaks. The native Darwin sys/audit.h conflicts with bsm/audit.h due to duplicate types, so for now we force bsm_wrappers.c to not perform a nested include of sys/audit.h. Obtained from: TrustedBSD Project
23 lines
426 B
Makefile
23 lines
426 B
Makefile
#
|
|
# $P4: //depot/projects/trustedbsd/openbsm/man/Makefile#7 $
|
|
#
|
|
|
|
MAN= audit.2 \
|
|
auditctl.2 \
|
|
auditon.2 \
|
|
getaudit.2 \
|
|
getauid.2 \
|
|
setaudit.2 \
|
|
setauid.2 \
|
|
audit.log.5 \
|
|
audit_class.5 \
|
|
audit_control.5 \
|
|
audit_event.5 \
|
|
audit_user.5 \
|
|
audit_warn.5
|
|
|
|
MLINKS= getaudit.2 getaudit_addr.2 \
|
|
setaudit.2 setaudit_addr.2
|
|
|
|
.include <bsd.prog.mk>
|