summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortonio <tonio>2005-09-07 11:58:56 +0000
committertonio <tonio>2005-09-07 11:58:56 +0000
commit03adbcdede408d45df14105d0ce312f7bd6e22d5 (patch)
tree3c3357e6d2c30f11415f4fded6adeb1542818bec /lang
parentd7eba6f1f2bd70c3d62da8cdcc846dadb83ecdce (diff)
downloadpkgsrc-03adbcdede408d45df14105d0ce312f7bd6e22d5.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