summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortonio <tonio@pkgsrc.org>2005-09-07 11:58:56 +0000
committertonio <tonio@pkgsrc.org>2005-09-07 11:58:56 +0000
commit2f909cc8b11e1c638159744ff6013a3bdabfa3de (patch)
tree3c3357e6d2c30f11415f4fded6adeb1542818bec /lang
parentde2133f96c6d13942e26ce4c4b9bed4d87726eed (diff)
downloadpkgsrc-2f909cc8b11e1c638159744ff6013a3bdabfa3de.tar.gz
Fix build under Solaris x86, by deactivating jit engine
Diffstat (limited to 'lang')
-rw-r--r--lang/kaffe/Makefile.common4
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