Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/rump/kern sljit is only available on very few architectu...
details: https://anonhg.NetBSD.org/src/rev/c28d53f6eb1e
branches: trunk
changeset: 791397:c28d53f6eb1e
user: martin <martin%NetBSD.org@localhost>
date: Sat Nov 16 10:34:47 2013 +0000
description:
sljit is only available on very few architectures, so do not try to build
it on all.
diffstat:
sys/rump/kern/Makefile.rumpkerncomp | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r 6e5e7a2768e5 -r c28d53f6eb1e sys/rump/kern/Makefile.rumpkerncomp
--- a/sys/rump/kern/Makefile.rumpkerncomp Sat Nov 16 01:41:43 2013 +0000
+++ b/sys/rump/kern/Makefile.rumpkerncomp Sat Nov 16 10:34:47 2013 +0000
@@ -1,9 +1,15 @@
-# $NetBSD: Makefile.rumpkerncomp,v 1.6 2013/11/16 01:39:18 rmind Exp $
+# $NetBSD: Makefile.rumpkerncomp,v 1.7 2013/11/16 10:34:47 martin Exp $
#
.include <bsd.own.mk>
-RUMPKERNCOMPS= crypto sljit tty z
+RUMPKERNCOMPS= crypto tty z
+
+.if ${MACHINE_ARCH} == "i386" || \
+ ${MACHINE_ARCH} == "x86_64" || \
+ ${MACHINE_ARCH} == "sparc"
+RUMPKERNCOMPS+= sljit
+.endif
.if ${MKZFS} != "no"
RUMPKERNCOMPS+= solaris
Home |
Main Index |
Thread Index |
Old Index