From owner-p4-projects@FreeBSD.ORG Tue Dec 2 18:04:43 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6E54616A4D0; Tue, 2 Dec 2003 18:04:43 -0800 (PST) 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 476D816A4CE for ; Tue, 2 Dec 2003 18:04:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85ED543F85 for ; Tue, 2 Dec 2003 18:04:42 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hB324gXJ094061 for ; Tue, 2 Dec 2003 18:04:42 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hB324fRB094058 for perforce@freebsd.org; Tue, 2 Dec 2003 18:04:41 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Tue, 2 Dec 2003 18:04:41 -0800 (PST) Message-Id: <200312030204.hB324fRB094058@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 43341 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: Wed, 03 Dec 2003 02:04:43 -0000 http://perforce.freebsd.org/chv.cgi?CH=43341 Change 43341 by rwatson@rwatson_powerbook on 2003/12/02 18:03:56 Also install headers in: /System/Library/Frameworks/Kernel.framework/Headers This way they can be used in kexts. Affected files ... .. //depot/projects/trustedbsd/sedarwin/Makefile#4 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin/Makefile#4 (text+ko) ==== @@ -3,12 +3,15 @@ dummy: @echo Please following the directions in bootstrap_instructions.txt -TBSDHEADERS=apsl/xnu/bsd/sys/extattr.h apsl/xnu/bsd/sys/mac.h \ - apsl/xnu/bsd/sys/mac_policy.h apsl/xnu/bsd/sys/_label.h \ - apsl/xnu/bsd/sys/ucred.h +TBSDHEADERS=extattr.h mac.h mac_policy.h _label.h ucred.h + +SRC1=apsl/xnu/bsd/sys +DEST1=/usr/include/sys +DEST2=/System/Library/Frameworks/Kernel.framework/Headers/sys install-headers: - install -m 444 -o root -g wheel $(TBSDHEADERS) /usr/include/sys + (cd $(SRC1) ; install -m 444 -o root -g wheel $(TBSDHEADERS) $(DEST1)) + (cd $(SRC1) ; install -m 444 -o root -g wheel $(TBSDHEADERS) $(DEST2)) cd libsebsd; make install-headers; cd .. libraries: