From owner-svn-src-projects@FreeBSD.ORG Thu Nov 27 00:10:17 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 0E90BB1B; Thu, 27 Nov 2014 00:10:17 +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 EFCF48EB; Thu, 27 Nov 2014 00:10:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAR0AGoq055655; Thu, 27 Nov 2014 00:10:16 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAR0AGCs055654; Thu, 27 Nov 2014 00:10:16 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201411270010.sAR0AGCs055654@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Thu, 27 Nov 2014 00:10:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275157 - projects/building-blocks/share/examples 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: Thu, 27 Nov 2014 00:10:17 -0000 Author: ngie Date: Thu Nov 27 00:10:16 2014 New Revision: 275157 URL: https://svnweb.freebsd.org/changeset/base/275157 Log: Honor MK_NETGRAPH for netgraph components Modified: projects/building-blocks/share/examples/Makefile Modified: projects/building-blocks/share/examples/Makefile ============================================================================== --- projects/building-blocks/share/examples/Makefile Thu Nov 27 00:02:42 2014 (r275156) +++ projects/building-blocks/share/examples/Makefile Thu Nov 27 00:10:16 2014 (r275157) @@ -20,7 +20,6 @@ LDIRS= BSD_daemon \ kld \ libvgl \ mdoc \ - netgraph \ perfmon \ ppi \ ppp \ @@ -99,13 +98,6 @@ XFILES= BSD_daemon/FreeBSD.pfa \ mdoc/example.3 \ mdoc/example.4 \ mdoc/example.9 \ - netgraph/ether.bridge \ - netgraph/frame_relay \ - netgraph/ngctl \ - netgraph/raw \ - netgraph/udp.tunnel \ - netgraph/virtual.chain \ - netgraph/virtual.lan \ perfmon/Makefile \ perfmon/README \ perfmon/perfmon.c \ @@ -206,6 +198,17 @@ XFILES+= hast/ucarp.sh \ hast/vip-up.sh .endif +.if ${MK_NETGRAPH} != "no" +LDIRS+= netgraph +XFILES+= netgraph/ether.bridge \ + netgraph/frame_relay \ + netgraph/ngctl \ + netgraph/raw \ + netgraph/udp.tunnel \ + netgraph/virtual.chain \ + netgraph/virtual.lan +.endif + .if ${MK_USB} != "no" LDIRS+= libusb20 XFILES+= libusb20/Makefile \