From owner-svn-src-stable-9@FreeBSD.ORG Fri Jul 18 18:11:25 2014 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA0E633C; Fri, 18 Jul 2014 18:11:25 +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 96A002F25; Fri, 18 Jul 2014 18:11:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6IIBPDJ006460; Fri, 18 Jul 2014 18:11:25 GMT (envelope-from truckman@svn.freebsd.org) Received: (from truckman@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6IIBPkt006459; Fri, 18 Jul 2014 18:11:25 GMT (envelope-from truckman@svn.freebsd.org) Message-Id: <201407181811.s6IIBPkt006459@svn.freebsd.org> From: Don Lewis Date: Fri, 18 Jul 2014 18:11:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r268853 - stable/9/sys/modules/xenhvm X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jul 2014 18:11:25 -0000 Author: truckman Date: Fri Jul 18 18:11:24 2014 New Revision: 268853 URL: http://svnweb.freebsd.org/changeset/base/268853 Log: Generate *all* the needed autogenerated header files. For some reason normal builds still work without this, but "make universe" requires it. Tested with "make universe". This is a direct commit to stable/9 because this module does not exist in head or stable/10. Modified: stable/9/sys/modules/xenhvm/Makefile Modified: stable/9/sys/modules/xenhvm/Makefile ============================================================================== --- stable/9/sys/modules/xenhvm/Makefile Fri Jul 18 18:09:20 2014 (r268852) +++ stable/9/sys/modules/xenhvm/Makefile Fri Jul 18 18:11:24 2014 (r268853) @@ -13,9 +13,11 @@ SRCS= xenhvm_mod.c \ balloon.c blkfront.c blkback.c control.c netback.c netfront.c \ xenpci.c evtchn.c gnttab.c features.c evtchn_dev.c \ xenbus.c xenbusb.c xenbusb_front.c xenbusb_back.c \ - xenbus_if.c xenbus_if.h xenbusb_if.c xenbusb_if.h \ - xenstore.c xenstore_dev.c -MFILES= xen/xenbus/xenbus_if.m xen/xenbus/xenbusb_if.m + xenbus_if.c xenbus_if.h xenbusb_if.c xenbusb_if.h \ + xenstore.c xenstore_dev.c \ + bus_if.h device_if.h pci_if.h vnode_if.h +MFILES= xen/xenbus/xenbus_if.m xen/xenbus/xenbusb_if.m \ + kern/bus_if.m kern/device_if.m dev/pci/pci_if.m CFLAGS+= -DXENHVM -DMODXENHVM .include