diff options
author | tron <tron> | 2009-09-13 13:11:56 +0000 |
---|---|---|
committer | tron <tron> | 2009-09-13 13:11:56 +0000 |
commit | e3a4079259be9b1cf333c38c6a58722967c05a31 (patch) | |
tree | 79638328074960b39d55f7ff8c44ba42b6bc624b /archivers/lzo | |
parent | 5c254d13c824f68fc5fedb0063d39ade9fed7eef (diff) | |
download | pkgsrc-e3a4079259be9b1cf333c38c6a58722967c05a31.tar.gz |
Disable assembler code under Mac OS X Snow Leopard to fix build failure.
Diffstat (limited to 'archivers/lzo')
-rw-r--r-- | archivers/lzo/Makefile | 5 |
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 |