Module Name: src
Committed By: pooka
Date: Tue Dec 7 17:23:28 UTC 2010
Modified Files:
src/sys/rump/net: Makefile.rumpnetcomp
Log Message:
sockin cannot be loaded the same time as rumpnet_inet because both
provide a PF_INET domain. Guess that real inet is more useful and
don't put sockin on the "all components" list.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 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.1 src/sys/rump/net/Makefile.rumpnetcomp:1.2
--- src/sys/rump/net/Makefile.rumpnetcomp:1.1 Sun Dec 5 16:53:46 2010
+++ src/sys/rump/net/Makefile.rumpnetcomp Tue Dec 7 17:23:27 2010
@@ -1,9 +1,15 @@
-# $NetBSD: Makefile.rumpnetcomp,v 1.1 2010/12/05 16:53:46 pooka Exp $
+# $NetBSD: Makefile.rumpnetcomp,v 1.2 2010/12/07 17:23:27 pooka Exp $
#
-RUMPNETCOMP= net net80211 netbt netinet local sockin shmif virtif
+RUMPNETCOMP= net net80211 netbt netinet local shmif virtif
+
+RUMPNETSOCKIN= sockin
.for var in ${RUMPNETCOMP}
RUMPNETLIBS+=lib${var}
RUMPNETLDADD+=-lrumpnet_${var}
.endfor
+
+.for var in ${RUMPNETSOCKIN}
+RUMPNETLIBS+=lib${var}
+.endfor