diff options
author | tron <tron@pkgsrc.org> | 2007-12-17 20:49:34 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2007-12-17 20:49:34 +0000 |
commit | ed10073c09b504fb35e1c9165d6cbf00a47e79a9 (patch) | |
tree | ebef373e48fff011d7c6c2e61a682ea32d0f5631 /multimedia | |
parent | b41f4c1a121dcacca8b02769227415506ac5d118 (diff) | |
download | pkgsrc-ed10073c09b504fb35e1c9165d6cbf00a47e79a9.tar.gz |
Log Message:
Disable assembler code under Mac OS X Leopard i386 to fix build failure.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libtheora/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/multimedia/libtheora/Makefile b/multimedia/libtheora/Makefile index 8807eb14dac..ccee40b63c6 100644 --- a/multimedia/libtheora/Makefile +++ b/multimedia/libtheora/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2007/10/17 20:46:55 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2007/12/17 20:49:34 tron Exp $ # DISTNAME= libtheora-1.0beta2 @@ -22,6 +22,12 @@ CONFIGURE_ARGS+= HAVE_DOXYGEN=false # disable player CONFIGURE_ENV+= ac_cv_path_SDL_CONFIG=no +.include "../../mk/bsd.prefs.mk" + +.if !empty(MACHINE_PLATFORM:MDarwin-[9].*-i386) +CONFIGURE_ARGS+= --disable-asm +.endif + .include "../../audio/libvorbis/buildlink3.mk" .include "../../multimedia/libogg/buildlink3.mk" |