diff options
author | tron <tron@pkgsrc.org> | 2006-10-07 20:35:48 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-10-07 20:35:48 +0000 |
commit | 2d5c56c39240cd79da372ee52adc48751e3efe9c (patch) | |
tree | 01189b12c5a8888424a673f445f4b1dbd6a16d44 | |
parent | 8c2f2558a886ccb04ea694bb10abe004a1d4b6a7 (diff) | |
download | pkgsrc-2d5c56c39240cd79da372ee52adc48751e3efe9c.tar.gz |
Disable assembler code for Mac OS X x86. That should fix a build problem
reported by Davide Zanon on the "pkgsrc-users" mailing list.
-rw-r--r-- | multimedia/libdv/Makefile.common | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/multimedia/libdv/Makefile.common b/multimedia/libdv/Makefile.common index cce378486e7..d0603638cd2 100644 --- a/multimedia/libdv/Makefile.common +++ b/multimedia/libdv/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2006/03/11 04:08:47 reed Exp $ +# $NetBSD: Makefile.common,v 1.6 2006/10/07 20:35:48 tron Exp $ DISTNAME= libdv-0.104 CATEGORIES= multimedia @@ -21,7 +21,8 @@ PTHREAD_AUTO_VARS= yes CONFIGURE_ARGS+= --disable-gtk .include "../../mk/bsd.prefs.mk" -.if empty(MACHINE_PLATFORM:M*-*-i386) + +.if (${OPSYS} == "Darwin") || empty(MACHINE_PLATFORM:M*-*-i386) CONFIGURE_ARGS+= --disable-asm .endif |