From owner-svn-src-projects@FreeBSD.ORG Wed Nov 26 23:07:55 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 06FE7230; Wed, 26 Nov 2014 23:07:55 +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 E80DA88; Wed, 26 Nov 2014 23:07:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAQN7sBm024466; Wed, 26 Nov 2014 23:07:54 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAQN7sen024465; Wed, 26 Nov 2014 23:07:54 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201411262307.sAQN7sen024465@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Wed, 26 Nov 2014 23:07:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275150 - projects/building-blocks/sys/modules 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: Wed, 26 Nov 2014 23:07:55 -0000 Author: ngie Date: Wed Nov 26 23:07:54 2014 New Revision: 275150 URL: https://svnweb.freebsd.org/changeset/base/275150 Log: Move hyperv/vmm under MK_HYPERV/MK_BHYVE, respectively Modified: projects/building-blocks/sys/modules/Makefile Modified: projects/building-blocks/sys/modules/Makefile ============================================================================== --- projects/building-blocks/sys/modules/Makefile Wed Nov 26 23:02:22 2014 (r275149) +++ projects/building-blocks/sys/modules/Makefile Wed Nov 26 23:07:54 2014 (r275150) @@ -389,6 +389,10 @@ SUBDIR= \ ${_zfs} \ zlib +.if ${MK_BHYVE} != "no" || defined(ALL_MODULES) +_vmm= vmm +.endif + .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) .if exists(${.CURDIR}/../opencrypto) _crypto= crypto @@ -399,6 +403,10 @@ _random= random .endif .endif +.if ${MK_HYPERV} != "no" || defined(ALL_MODULES) +_hyperv= hyperv +.endif + .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _carp= carp @@ -550,7 +558,6 @@ _hptmv= hptmv _hptnr= hptnr _hptrr= hptrr .endif -_hyperv= hyperv _ichwd= ichwd _ida= ida _iir= iir @@ -612,7 +619,6 @@ _qlxge= qlxge _qlxgb= qlxgb _qlxgbe= qlxgbe _sfxge= sfxge -_vmm= vmm .endif .if ${MACHINE_CPUARCH} == "i386"