From owner-svn-src-projects@FreeBSD.ORG Sun Nov 30 00:49:58 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FB67B44; Sun, 30 Nov 2014 00:49:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1010BF5; Sun, 30 Nov 2014 00:49:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAU0nvWR015991; Sun, 30 Nov 2014 00:49:57 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAU0nve1015990; Sun, 30 Nov 2014 00:49:57 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201411300049.sAU0nve1015990@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 30 Nov 2014 00:49:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275290 - projects/building-blocks/include X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2014 00:49:58 -0000 Author: ngie Date: Sun Nov 30 00:49:57 2014 New Revision: 275290 URL: https://svnweb.freebsd.org/changeset/base/275290 Log: Install bsm headers if MK_AUDIT != no Modified: projects/building-blocks/include/Makefile Modified: projects/building-blocks/include/Makefile ============================================================================== --- projects/building-blocks/include/Makefile Sun Nov 30 00:49:24 2014 (r275289) +++ projects/building-blocks/include/Makefile Sun Nov 30 00:49:57 2014 (r275290) @@ -36,7 +36,7 @@ PHDRS= sched.h _semaphore.h LHDRS= aio.h errno.h fcntl.h linker_set.h poll.h stdatomic.h stdint.h \ syslog.h ucontext.h -LDIRS= bsm cam geom net net80211 netinet netinet6 \ +LDIRS= cam geom net net80211 netinet netinet6 \ netipsec netsmb nfs nfsclient nfsserver sys vm LSUBDIRS= cam/ata cam/scsi \ @@ -62,6 +62,10 @@ LDIRS+= netnatm LSUBDIRS+= netgraph/atm .endif +.if ${MK_AUDIT} != "no" +LDIRS+= bsm +.endif + .if ${MK_BLUETOOTH} != "no" LSUBSUBDIRS+= netgraph/bluetooth/include .endif