pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/x264-devel Disable assembler support on x86...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f8eee8af96a9
branches:  trunk
changeset: 551807:f8eee8af96a9
user:      tron <tron%pkgsrc.org@localhost>
date:      Sat Dec 20 11:57:29 2008 +0000

description:
Disable assembler support on x86_64 systems because it breaks the build
of a shared version of the library.

diffstat:

 multimedia/x264-devel/Makefile |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r 020042c4f0b9 -r f8eee8af96a9 multimedia/x264-devel/Makefile
--- a/multimedia/x264-devel/Makefile    Sat Dec 20 11:00:43 2008 +0000
+++ b/multimedia/x264-devel/Makefile    Sat Dec 20 11:57:29 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 2008/12/18 16:19:07 bjs Exp $
+# $NetBSD: Makefile,v 1.15 2008/12/20 11:57:29 tron Exp $
 
 SNAPSHOT_DATE=         20081217
 
@@ -20,9 +20,10 @@
 CFLAGS+=       -DHAVE_STDLIB_H
 .endif
 
-
-.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
+.if ${MACHINE_ARCH} == "i386"
 BUILD_DEPENDS+=        yasm>=0.4.0:../../devel/yasm
+.elif ${MACHINE_ARCH} == "x86_64"
+CONFIGURE_ARGS+=       --disable-asm
 .endif
 
 USE_TOOLS+=            gmake



Home | Main Index | Thread Index | Old Index