From 971cfa82fe97a8facd79f3d769b0f0fd47454f5d Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Sun, 23 Jan 2000 01:47:59 +0000 Subject: Support INET6, NETATALK and IPX as well as INET. --- sys/modules/if_tun/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'sys/modules') diff --git a/sys/modules/if_tun/Makefile b/sys/modules/if_tun/Makefile index 019bc910ed7d..704fa2e123a4 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 -- cgit v1.3