summaryrefslogtreecommitdiff
path: root/misc/lv
diff options
context:
space:
mode:
authorminoura <minoura>2002-02-22 02:20:46 +0000
committerminoura <minoura>2002-02-22 02:20:46 +0000
commitabebd3cb3901b6b1fb61f2f9262e2e1ff9961944 (patch)
treef6531d90b69c526d68e7ebcc8adfc78c161d0a1b /misc/lv
parentc91c8109233c38b44b09ec00c95ba925b1b3091d (diff)
downloadpkgsrc-abebd3cb3901b6b1fb61f2f9262e2e1ff9961944.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/Makefile6
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"