Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Apr 2005 14:58:43 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 75882 for review
Message-ID:  <200504241458.j3OEwh4k088789@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=75882

Change 75882 by rwatson@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 .
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200504241458.j3OEwh4k088789>