Date: Thu, 20 May 2010 08:43:29 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r208338 - stable/8/sys/modules/cas Message-ID: <201005200843.o4K8hTD3042989@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Thu May 20 08:43:29 2010 New Revision: 208338 URL: http://svn.freebsd.org/changeset/base/208338 Log: MFC: r208143 Add the ofw_bus_if.h dependency introduced with r207585 (MFC'ed to stable/8 in r208086). Modified: stable/8/sys/modules/cas/Makefile Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) stable/8/sys/geom/sched/ (props changed) Modified: stable/8/sys/modules/cas/Makefile ============================================================================== --- stable/8/sys/modules/cas/Makefile Thu May 20 08:15:06 2010 (r208337) +++ stable/8/sys/modules/cas/Makefile Thu May 20 08:43:29 2010 (r208338) @@ -3,6 +3,10 @@ .PATH: ${.CURDIR}/../../dev/cas KMOD= if_cas -SRCS= bus_if.h device_if.h if_cas.c miibus_if.h pci_if.h +SRCS= bus_if.h device_if.h if_cas.c miibus_if.h pci_if.h ${ofw_bus_if} + +.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64" +ofw_bus_if= ofw_bus_if.h +.endif .include <bsd.kmod.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005200843.o4K8hTD3042989>