PERFORCE change 75882 for review
Robert Watson
rwatson at FreeBSD.org
Sun Apr 24 14:58:43 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=75882
Change 75882 by rwatson at rwatson_paprika on 2005/04/24 14:57:49
Try to avoid including system includes when not necessary, as system
BSM include files may interfere with local OpenBSM includes. This
might not be quite the right way to do it, but helps with building on
Darwin.
Affected files ...
.. //depot/projects/trustedbsd/openbsm/bin/auditreduce/Makefile#2 edit
.. //depot/projects/trustedbsd/openbsm/bin/praudit/Makefile#2 edit
.. //depot/projects/trustedbsd/openbsm/libbsm/Makefile#3 edit
Differences ...
==== //depot/projects/trustedbsd/openbsm/bin/auditreduce/Makefile#2 (text+ko) ====
@@ -2,7 +2,7 @@
# $FreeBSD$
#
-CFLAGS+= -I ../.. -I ../../libbsm
+CFLAGS+= -I- -I ../.. -I ../../libbsm -I.
PROG= auditreduce
MAN= auditreduce.1
DPADD= /usr/lib/libbsm.a
==== //depot/projects/trustedbsd/openbsm/bin/praudit/Makefile#2 (text+ko) ====
@@ -2,7 +2,7 @@
# $FreeBSD$
#
-CFLAGS+= -I ../.. -I ../../libbsm
+CFLAGS+= -I- -I ../.. -I ../../libbsm -I.
PROG= praudit
MAN= praudit.1
DPADD= /usr/lib/libbsm.a
==== //depot/projects/trustedbsd/openbsm/libbsm/Makefile#3 (text+ko) ====
@@ -7,7 +7,7 @@
LIB= bsm
SHLIB_MAJOR= 1
-CFLAGS+= \
+CFLAGS+=-I- \
-I .. \
-I .
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list