PERFORCE change 91641 for review
Christian Brueffer
brueffer at FreeBSD.org
Sun Feb 12 10:52:05 PST 2006
http://perforce.freebsd.org/chv.cgi?CH=91641
Change 91641 by brueffer at brueffer_serenity on 2006/02/12 18:51:39
Make audit binaries conditional on NO_AUDIT.
Affected files ...
.. //depot/projects/trustedbsd/audit3/usr.sbin/Makefile#13 edit
Differences ...
==== //depot/projects/trustedbsd/audit3/usr.sbin/Makefile#13 (text+ko) ====
@@ -12,10 +12,10 @@
${_apmd} \
${_arlcontrol} \
arp \
- audit \
- auditd \
- auditon \
- auditreduce \
+ ${_audit} \
+ ${_auditd} \
+ ${_auditon} \
+ ${_auditreduce} \
${_asf} \
${_atm} \
${_authpf} \
@@ -124,7 +124,7 @@
pppd \
pppstats \
${_praliases} \
- praudit \
+ ${_praudit} \
procctl \
pstat \
pw \
@@ -200,6 +200,14 @@
_atm= atm
.endif
+.if !defined(NO_AUDIT)
+_audit= audit
+_auditd= auditd
+_auditon= auditon
+_auditreduce= auditreduce
+_praudit= praudit
+.endif
+
.if !defined(NO_BIND)
.if !defined(NO_BIND_DNSSEC) && !defined(NO_CRYPT)
_dnssec-keygen= dnssec-keygen
More information about the trustedbsd-cvs
mailing list