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.
This commit is contained in:
pooka 2010-12-07 17:23:27 +00:00
parent 1246e1db41
commit e7ec49d29a
1 changed files with 8 additions and 2 deletions

View File

@ -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