Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 May 2009 16:00:41 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r191963 - head/sys/modules/sound/sound
Message-ID:  <200905101600.n4AG0ftd061813@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nwhitehorn
Date: Sun May 10 16:00:41 2009
New Revision: 191963
URL: http://svn.freebsd.org/changeset/base/191963

Log:
  PowerPC does not, in general, have ISA sound devices or an ISA bus,
  so add PowerPC to list of platforms for which we don't want to depend
  on ISA.

Modified:
  head/sys/modules/sound/sound/Makefile

Modified: head/sys/modules/sound/sound/Makefile
==============================================================================
--- head/sys/modules/sound/sound/Makefile	Sun May 10 15:37:48 2009	(r191962)
+++ head/sys/modules/sound/sound/Makefile	Sun May 10 16:00:41 2009	(r191963)
@@ -18,7 +18,7 @@ SRCS+=	midi.c mpu401.c sequencer.c
 
 EXPORT_SYMS=	YES	# XXX evaluate
 
-.if ${MACHINE_ARCH} == "sparc64"
+.if ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "powerpc"
 # Create an empty opt_isa.h in order to keep kmod.mk from linking in an
 # existing one from KERNBUILDDIR which possibly has DEV_ISA defined so
 # sound.ko is always built without isadma support.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905101600.n4AG0ftd061813>