summaryrefslogtreecommitdiffstats
path: root/sys/modules/if_tun
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2000-01-23 01:47:59 +0000
committerbrian <brian@FreeBSD.org>2000-01-23 01:47:59 +0000
commitfb25843f9aeeaa649acc2f5f9bfc250315df9b74 (patch)
treef55799e4c4ec4ff490df87a0081cde07d4c453e8 /sys/modules/if_tun
parenta186cbef4efa422f53ee988f1a9c59d97e0656b9 (diff)
downloadFreeBSD-src-fb25843f9aeeaa649acc2f5f9bfc250315df9b74.zip
FreeBSD-src-fb25843f9aeeaa649acc2f5f9bfc250315df9b74.tar.gz
Support INET6, NETATALK and IPX as well as INET.
Diffstat (limited to 'sys/modules/if_tun')
-rw-r--r--sys/modules/if_tun/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/modules/if_tun/Makefile b/sys/modules/if_tun/Makefile
index 019bc91..704fa2e 100644
--- a/sys/modules/if_tun/Makefile
+++ b/sys/modules/if_tun/Makefile
@@ -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>
OpenPOWER on IntegriCloud