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 | 42f64b21141babe4d7d7022f8aa47874a635b142 (patch) | |
tree | ebef373e48fff011d7c6c2e61a682ea32d0f5631 /multimedia/libtheora | |
parent | 510527f07ceb3ff8b0a4c051e14fce670d61a4c3 (diff) | |
download | pkgsrc-42f64b21141babe4d7d7022f8aa47874a635b142.tar.gz |
Log Message:
Disable assembler code under Mac OS X Leopard i386 to fix build failure.
Diffstat (limited to 'multimedia/libtheora')
-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" |