From owner-p4-projects@FreeBSD.ORG Sun Apr 24 14:58:44 2005 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DEAC816A4D0; Sun, 24 Apr 2005 14:58:43 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B5BD16A4CE for ; Sun, 24 Apr 2005 14:58:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D4B443D2F for ; Sun, 24 Apr 2005 14:58:43 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j3OEwhhB088792 for ; Sun, 24 Apr 2005 14:58:43 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j3OEwh4k088789 for perforce@freebsd.org; Sun, 24 Apr 2005 14:58:43 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sun, 24 Apr 2005 14:58:43 GMT Message-Id: <200504241458.j3OEwh4k088789@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Subject: PERFORCE change 75882 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 14:58:44 -0000 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 .