Module Name: src Committed By: pooka Date: Tue Sep 3 21:32:21 UTC 2013
Modified Files: src/sys/rump/librump/rumpkern: Makefile.rumpkern Log Message: + don't rename rump_syscalls.*o + support RUMP_KERNEL_IS_LIBC To generate a diff of this commit: cvs rdiff -u -r1.130 -r1.131 src/sys/rump/librump/rumpkern/Makefile.rumpkern Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/librump/rumpkern/Makefile.rumpkern diff -u src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.130 src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.131 --- src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.130 Thu Aug 22 15:53:05 2013 +++ src/sys/rump/librump/rumpkern/Makefile.rumpkern Tue Sep 3 21:32:21 2013 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.rumpkern,v 1.130 2013/08/22 15:53:05 matt Exp $ +# $NetBSD: Makefile.rumpkern,v 1.131 2013/09/03 21:32:21 pooka Exp $ # .include "${RUMPTOP}/Makefile.rump" @@ -23,6 +23,13 @@ SRCS+= rump.c rumpcopy.c emul.c intr.c l kobj_rename.c ltsleep.c scheduler.c \ signals.c sleepq.c threads.c vm.c cprng_stub.c +# autogenerated into the correct namespace +RUMPOBJ_NORENAME= rump_syscalls.*o + +.ifdef RUMP_KERNEL_IS_LIBC +CPPFLAGS+= -DRUMP_KERNEL_IS_LIBC +.endif + # optional hypervisor interfaces #SRCS+= hyperstubs.c