diff options
author | tonio <tonio@pkgsrc.org> | 2005-09-07 11:58:56 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2005-09-07 11:58:56 +0000 |
commit | 1cb49f90e49669c4179aef395c0e481c08adb33b (patch) | |
tree | 3c3357e6d2c30f11415f4fded6adeb1542818bec /lang/kaffe | |
parent | c2c33dea3491d2e6235df4881c60472c6e713778 (diff) | |
download | pkgsrc-1cb49f90e49669c4179aef395c0e481c08adb33b.tar.gz |
Fix build under Solaris x86, by deactivating jit engine
Diffstat (limited to 'lang/kaffe')
-rw-r--r-- | lang/kaffe/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/kaffe/Makefile.common b/lang/kaffe/Makefile.common index c00ea6cd17c..d8332b502ef 100644 --- a/lang/kaffe/Makefile.common +++ b/lang/kaffe/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2005/09/06 19:11:24 tonio Exp $ +# $NetBSD: Makefile.common,v 1.8 2005/09/07 11:58:56 tonio Exp $ DISTNAME= kaffe-1.1.5 CATEGORIES= lang java @@ -46,7 +46,7 @@ CONFIGURE_ARGS+= --disable-native-awt CONFIGURE_ENV+= VM_LIBS="-lc" .endif -.if ((${OPSYS} == "NetBSD") && (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc")) +.if (((${OPSYS} == "NetBSD") && (${MACHINE_ARCH} == "alpha")) || (${MACHINE_ARCH} == "powerpc") || ((${OPSYS} == "SunOS") && ${MACHINE_ARCH} == "i386")) # On these systems, jit3 is not working. CONFIGURE_ARGS+= --with-engine=intrp .endif |