Module Name:    src
Committed By:   pooka
Date:           Thu Aug  1 13:11:22 UTC 2013

Modified Files:
        src/sys/rump/net: Makefile.rumpnetcomp

Log Message:
Make it possible to not build virtif since it's not supported
on all hosts.

(no change to NetBSD)


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/rump/net/Makefile.rumpnetcomp

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/net/Makefile.rumpnetcomp
diff -u src/sys/rump/net/Makefile.rumpnetcomp:1.6 src/sys/rump/net/Makefile.rumpnetcomp:1.7
--- src/sys/rump/net/Makefile.rumpnetcomp:1.6	Thu Jul 18 15:59:27 2013
+++ src/sys/rump/net/Makefile.rumpnetcomp	Thu Aug  1 13:11:22 2013
@@ -1,8 +1,14 @@
-#	$NetBSD: Makefile.rumpnetcomp,v 1.6 2013/07/18 15:59:27 kefren Exp $
+#	$NetBSD: Makefile.rumpnetcomp,v 1.7 2013/08/01 13:11:22 pooka Exp $
 #
 
+.include <bsd.own.mk>
+
 RUMPNETCOMP=	agr bridge net net80211 netbt netinet netmpls npf
-RUMPNETCOMP+=	local shmif virtif
+RUMPNETCOMP+=	local shmif
+
+.if ${RUMP_VIRTIF:Uyes} == "yes"
+RUMPNETCOMP+=	virtif
+.endif
 
 RUMPNETSOCKIN=	sockin
 

Reply via email to