diff options
Diffstat (limited to 'sys/modules/linux/Makefile')
-rw-r--r-- | sys/modules/linux/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index 63653f8..3cbaef3 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -8,8 +8,8 @@ KMOD= linux SRCS= linux_dummy.c linux_file.c linux_getcwd.c linux_ioctl.c linux_ipc.c \ linux_machdep.c linux_mib.c linux_misc.c linux_signal.c linux_socket.c \ linux_stats.c linux_sysctl.c linux_sysent.c linux_sysvec.c \ - linux_util.c opt_compat.h opt_linux.h opt_mac.h opt_vmpage.h \ - vnode_if.h + linux_util.c opt_compat.h opt_inet6.h opt_linux.h opt_mac.h \ + opt_vmpage.h vnode_if.h OBJS= linux_locore.o .if ${MACHINE_ARCH} == "i386" @@ -42,4 +42,7 @@ linux_genassym.o: linux_genassym.c linux.h @ machine opt_compat.h: echo "#define COMPAT_43 1" > opt_compat.h +opt_inet6.h: + echo "#define INET6 1" > opt_inet6.h + .include <bsd.kmod.mk> |