diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2006-03-20 14:24:58 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2006-03-20 14:24:58 +0000 |
| commit | cea557add088ca3156187635fbcc8ebc8dba3f3f (patch) | |
| tree | cbf0f7476670cafdc131d52ec306bf8158483b82 /include/Makefile | |
| parent | a3aed80d1eb78a8d20f08ae2018b49ece4ccb7f2 (diff) | |
Notes
Diffstat (limited to 'include/Makefile')
| -rw-r--r-- | include/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include/Makefile b/include/Makefile index f33b2357fd32..0a4c558f612e 100644 --- a/include/Makefile +++ b/include/Makefile @@ -34,7 +34,8 @@ LHDRS= aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \ termios.h ucontext.h LDIRS= bsm cam geom net net80211 netatalk netatm netgraph netinet netinet6 \ - netipsec netipx netkey netnatm netncp netsmb nfs nfsclient nfsserver \ + netipsec ${_netipx} netkey netnatm ${_netncp} netsmb \ + nfs nfsclient nfsserver \ pccard posix4 sys vm LSUBDIRS= cam/scsi \ @@ -42,7 +43,7 @@ LSUBDIRS= cam/scsi \ dev/ic dev/iicbus ${_dev_ieee488} dev/lmc dev/ofw \ dev/pbio dev/ppbus dev/smbus dev/speaker dev/usb dev/wi dev/utopia \ fs/devfs fs/fdescfs fs/fifofs fs/msdosfs fs/ntfs fs/nullfs \ - fs/nwfs fs/portalfs fs/procfs fs/smbfs fs/udf fs/umapfs \ + ${_fs_nwfs} fs/portalfs fs/procfs fs/smbfs fs/udf fs/umapfs \ fs/unionfs \ geom/concat geom/eli geom/gate geom/label geom/mirror geom/nop \ geom/raid3 geom/shsec geom/stripe \ @@ -66,6 +67,16 @@ INCS+= hesiod.h LSUBSUBDIRS= netgraph/bluetooth/include .endif +# XXX unconditionally needed by <netsmb/netbios.h> +#.if ${MK_IPX} != "no" +_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 |
