diff options
author | minoura <minoura@pkgsrc.org> | 2002-02-22 02:20:46 +0000 |
---|---|---|
committer | minoura <minoura@pkgsrc.org> | 2002-02-22 02:20:46 +0000 |
commit | e15708a404c9ce3c03be633f7795d498cc425f60 (patch) | |
tree | f6531d90b69c526d68e7ebcc8adfc78c161d0a1b /misc/lv | |
parent | 355f9f6658813195584f51df74bdb83ad0534a95 (diff) | |
download | pkgsrc-e15708a404c9ce3c03be633f7795d498cc425f60.tar.gz |
Disable this package on NetBSD/sparc64.
It compiles, but would not work due to unaligned access.
Solaris and Linux (and NetBSD/alpha) traps unaligned access exceptions
and fixes them up automatically but NetBSD/sparc64 does not.
This problem is already reported to the original author; I'd
wait for his fix. Until then use the 32bit binary instead.
Diffstat (limited to 'misc/lv')
-rw-r--r-- | misc/lv/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/misc/lv/Makefile b/misc/lv/Makefile index 3456e0b098e..0911218fe0d 100644 --- a/misc/lv/Makefile +++ b/misc/lv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/02/17 18:09:13 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2002/02/22 02:20:46 minoura Exp $ # FreeBSD Id: Makefile,v 1.3 1999/01/08 03:32:06 itojun Exp $ DISTNAME= lv4494 @@ -14,4 +14,8 @@ GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../src/configure WRKSRC= ${WRKDIR}/${DISTNAME}/build +# Causes unaligned access fault... +# Note that the 32bit (sparc) binary works fine. +NOT_FOR_PLATFORM= NetBSD-*-sparc64 + .include "../../mk/bsd.pkg.mk" |