diff options
author | tron <tron@pkgsrc.org> | 2009-09-13 13:33:59 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2009-09-13 13:33:59 +0000 |
commit | 0f39c61f6cf968299f578011ebeca1c54e307f0b (patch) | |
tree | 62c90c648a21b7a79b681919c1aebe882ab3fa06 /multimedia/libtheora | |
parent | a9367701135fc9a58de2286e9f9619a84fb44caf (diff) | |
download | pkgsrc-0f39c61f6cf968299f578011ebeca1c54e307f0b.tar.gz |
Disable assembler code under Mac OS X Leopard to fix build failure.
Diffstat (limited to 'multimedia/libtheora')
-rw-r--r-- | multimedia/libtheora/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/multimedia/libtheora/Makefile b/multimedia/libtheora/Makefile index 6f57fe5be4c..39f44a1f656 100644 --- a/multimedia/libtheora/Makefile +++ b/multimedia/libtheora/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2009/04/16 04:03:49 tron Exp $ +# $NetBSD: Makefile,v 1.27 2009/09/13 13:33:59 tron Exp $ # .include "Makefile.common" @@ -21,7 +21,8 @@ CONFIGURE_ENV+= HAVE_PDFLATEX=no .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Msunpro) || \ - !empty(MACHINE_PLATFORM:MDarwin-[9].*-i386) + !empty(MACHINE_PLATFORM:MDarwin-9.*-i386) || \ + !empty(MACHINE_PLATFORM:MDarwin-??.*-*) CONFIGURE_ARGS+= --disable-asm .endif |