mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-23 11:18:54 +00:00
Support INET6, NETATALK and IPX as well as INET.
This commit is contained in:
parent
43e8def200
commit
971cfa82fe
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56411
@ -2,7 +2,8 @@
|
||||
|
||||
.PATH: ${.CURDIR}/../../net
|
||||
KMOD= if_tun
|
||||
SRCS= if_tun.c opt_devfs.h opt_inet.h vnode_if.h
|
||||
SRCS= if_tun.c opt_devfs.h opt_inet.h opt_inet6.h opt_atalk.h opt_ipx.h \
|
||||
vnode_if.h
|
||||
NOMAN=
|
||||
|
||||
NBPF?= 1
|
||||
@ -13,4 +14,13 @@ CFLAGS+= ${PROTOS}
|
||||
opt_inet.h:
|
||||
echo "#define INET 1" > opt_inet.h
|
||||
|
||||
opt_inet6.h:
|
||||
echo "#define INET6 1" > opt_inet6.h
|
||||
|
||||
opt_atalk.h:
|
||||
echo "#define NETATALK 1" > opt_atalk.h
|
||||
|
||||
opt_ipx.h:
|
||||
echo "#define IPX 1" > opt_ipx.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user