svn commit: r191963 - head/sys/modules/sound/sound

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun May 10 16:00:42 UTC 2009


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.


More information about the svn-src-head mailing list