diff options
author | attilio <attilio@FreeBSD.org> | 2012-10-17 11:16:17 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2012-10-17 11:16:17 +0000 |
commit | 3f4806915ef86ad20f5602a0e46a27fc609e65ba (patch) | |
tree | a36bb1b48615302d343a7afd78f6ea19a6b64b3e /include/Makefile | |
parent | f16dd753c48f6804e09296920d7c405356699352 (diff) | |
download | FreeBSD-src-3f4806915ef86ad20f5602a0e46a27fc609e65ba.zip FreeBSD-src-3f4806915ef86ad20f5602a0e46a27fc609e65ba.tar.gz |
Disconnect non-MPSAFE NWFS from the build in preparation for dropping
GIANT from VFS. In addition, disconnect also netncp, which is a base
requirement for NWFS.
In the possibility of a future maintenance of the code and later
readd to the FreeBSD base, maybe we should think about a better location
for netncp. I'm not entirely sure the / top location is actually right,
however I will let network people to comment on that more specifically.
This is not targeted for MFC.
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/Makefile b/include/Makefile index 89bcb91..6542420 100644 --- a/include/Makefile +++ b/include/Makefile @@ -44,7 +44,7 @@ LSUBDIRS= cam/ata cam/scsi \ dev/ofw dev/pbio ${_dev_powermac_nvram} dev/ppbus dev/smbus \ dev/speaker dev/usb dev/utopia dev/vkbd dev/wi \ fs/devfs fs/fdescfs fs/msdosfs fs/nandfs fs/nfs fs/ntfs fs/nullfs \ - ${_fs_nwfs} fs/procfs fs/smbfs fs/udf fs/unionfs \ + fs/procfs fs/smbfs fs/udf fs/unionfs \ geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \ geom/mirror geom/mountver geom/multipath geom/nop \ geom/raid geom/raid3 geom/shsec geom/stripe geom/virstor \ @@ -81,11 +81,6 @@ LSUBSUBDIRS+= netgraph/bluetooth/include _netipx= netipx #.endif -.if ${MK_NCP} != "no" -_netncp= netncp -_fs_nwfs= fs/nwfs -.endif - # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is # probably only useful for developers and should be avoided if you do not |