diff options
author | tron <tron> | 2009-01-03 15:40:04 +0000 |
---|---|---|
committer | tron <tron> | 2009-01-03 15:40:04 +0000 |
commit | 0c7e8ab6ab5ce7085b9210f41621de16a055ba74 (patch) | |
tree | 4bbd2e5a4930b8519857a64dfd8009e01daa6159 /multimedia | |
parent | a9d11bcef0d9ab4c4cb5d95918c7c163de8956e1 (diff) | |
download | pkgsrc-0c7e8ab6ab5ce7085b9210f41621de16a055ba74.tar.gz |
Disable assembler support on Mac OS X Intel systems because it breaks the
build of a shared version of the library.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/x264-devel/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/multimedia/x264-devel/Makefile b/multimedia/x264-devel/Makefile index 9875ab7d9af..75afcc81b31 100644 --- a/multimedia/x264-devel/Makefile +++ b/multimedia/x264-devel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2008/12/20 11:57:29 tron Exp $ +# $NetBSD: Makefile,v 1.16 2009/01/03 15:40:04 tron Exp $ SNAPSHOT_DATE= 20081217 @@ -21,7 +21,11 @@ CFLAGS+= -DHAVE_STDLIB_H .endif .if ${MACHINE_ARCH} == "i386" +. if ${OPSYS} == "Darwin" +CONFIGURE_ARGS+= --disable-asm +. else BUILD_DEPENDS+= yasm>=0.4.0:../../devel/yasm +. endif .elif ${MACHINE_ARCH} == "x86_64" CONFIGURE_ARGS+= --disable-asm .endif |