diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2003-09-23 20:56:00 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2003-09-23 20:56:00 +0000 |
commit | 731d71c406f4f6365c5ab3ad348d09ad1b9ad317 (patch) | |
tree | 48187a1fdbe63a8cc0e7193c650f6aa84402b33c /lang | |
parent | 5bc408943d94b14ea2343f9d6126e60bfddd69a4 (diff) | |
download | pkgsrc-731d71c406f4f6365c5ab3ad348d09ad1b9ad317.tar.gz |
enable on alpha. still fails 3 out of nearly 200 self tests
Diffstat (limited to 'lang')
-rw-r--r-- | lang/kaffe/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lang/kaffe/Makefile b/lang/kaffe/Makefile index 8575e485967..03990486ba9 100644 --- a/lang/kaffe/Makefile +++ b/lang/kaffe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2003/09/22 03:04:16 jschauma Exp $ +# $NetBSD: Makefile,v 1.50 2003/09/23 20:56:00 dmcmahill Exp $ DISTNAME= kaffe-1.1.0 CATEGORIES= lang java @@ -16,7 +16,7 @@ USE_GMAKE= yes LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig TEST_TARGET= check -ONLY_FOR_PLATFORM= *-*-arm *-*-arm32 *-*-i386 *-*-m68k *-*-mips* \ +ONLY_FOR_PLATFORM= *-*-alpha *-*-arm *-*-arm32 *-*-i386 *-*-m68k *-*-mips* \ *-*-sparc *-*-powerpc GNU_CONFIGURE= yes @@ -43,6 +43,11 @@ SUPPORT_FILES= ${PREFIX}/jre/lib/security/java.security.default \ CONFIGURE_ENV+= VM_LIBS="-lc" .endif +.if (${OPSYS} == "NetBSD") && (${MACHINE_ARCH} == "alpha") +# On these systems, jit3 is not working. +CONFIGURE_ARGS+= --with-engine=intrp +.endif + post-install: ${INSTALL_DATA} ${WRKSRC}/license.terms ${PREFIX} |