Sat Nov 16 10:34:47 2013 UTC ()
sljit is only available on very few architectures, so do not try to build
it on all.


(martin)
diff -r1.6 -r1.7 src/sys/rump/kern/Makefile.rumpkerncomp

cvs diff -r1.6 -r1.7 src/sys/rump/kern/Makefile.rumpkerncomp (expand / switch to unified diff)

--- src/sys/rump/kern/Makefile.rumpkerncomp 2013/11/16 01:39:18 1.6
+++ src/sys/rump/kern/Makefile.rumpkerncomp 2013/11/16 10:34:47 1.7
@@ -1,15 +1,21 @@ @@ -1,15 +1,21 @@
1# $NetBSD: Makefile.rumpkerncomp,v 1.6 2013/11/16 01:39:18 rmind Exp $ 1# $NetBSD: Makefile.rumpkerncomp,v 1.7 2013/11/16 10:34:47 martin Exp $
2# 2#
3 3
4.include <bsd.own.mk> 4.include <bsd.own.mk>
5 5
6RUMPKERNCOMPS= crypto sljit tty z 6RUMPKERNCOMPS= crypto tty z
 7
 8.if ${MACHINE_ARCH} == "i386" || \
 9 ${MACHINE_ARCH} == "x86_64" || \
 10 ${MACHINE_ARCH} == "sparc"
 11RUMPKERNCOMPS+= sljit
 12.endif
7 13
8.if ${MKZFS} != "no" 14.if ${MKZFS} != "no"
9RUMPKERNCOMPS+= solaris 15RUMPKERNCOMPS+= solaris
10.endif 16.endif
11 17
12.for var in ${RUMPKERNCOMPS} 18.for var in ${RUMPKERNCOMPS}
13RUMPKERNLIBS+=lib${var} 19RUMPKERNLIBS+=lib${var}
14RUMPKERNLDADD+=-lrumpkern_${var} 20RUMPKERNLDADD+=-lrumpkern_${var}
15.endfor 21.endfor