summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2009-09-13 13:11:56 +0000
committertron <tron@pkgsrc.org>2009-09-13 13:11:56 +0000
commit1fba68cc083ccbacf2865f16ae297f969ba87314 (patch)
tree79638328074960b39d55f7ff8c44ba42b6bc624b /archivers
parente75583b3ba19340359152788dc26f5502506a0f8 (diff)
downloadpkgsrc-1fba68cc083ccbacf2865f16ae297f969ba87314.tar.gz
Disable assembler code under Mac OS X Snow Leopard to fix build failure.
Diffstat (limited to 'archivers')
-rw-r--r--archivers/lzo/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/archivers/lzo/Makefile b/archivers/lzo/Makefile
index 780ca6ffc67..18c3c31e081 100644
--- a/archivers/lzo/Makefile
+++ b/archivers/lzo/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2008/05/20 15:11:55 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2009/09/13 13:11:56 tron Exp $
DISTNAME= lzo-2.03
CATEGORIES= archivers
@@ -18,7 +18,8 @@ TEST_TARGET= test
.include "../../mk/bsd.prefs.mk"
-.if !empty(MACHINE_PLATFORM:MDarwin-9.*-i386)
+.if !empty(MACHINE_PLATFORM:MDarwin-9.*-i386) || \
+ !empty(MACHINE_PLATFORM:MDarwin-??.*-*)
CONFIGURE_ARGS+= --disable-asm
.endif