aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2016-08-01 12:09:04 +0000
committerJulian Elischer <julian@FreeBSD.org>2016-08-01 12:09:04 +0000
commitd7373c820eec3d76bd3abcd72e4a63c0aebbc888 (patch)
tree6099c8dabddaebd73b505f7bc55d892790585783 /sys/modules
parentbf909fc9a43ea8d560214e4bae6344bc454074fb (diff)
downloadsrc-d7373c820eec3d76bd3abcd72e4a63c0aebbc888.tar.gz
src-d7373c820eec3d76bd3abcd72e4a63c0aebbc888.zip
netgraph module for reconstructing checksums
PR: 206108 Submitted by: Dmitry Vagin daemon.hammer@ya.ru MFC after: 1 month
Notes
Notes: svn path=/head/; revision=303612
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/netgraph/checksum/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/netgraph/checksum/Makefile b/sys/modules/netgraph/checksum/Makefile
new file mode 100644
index 000000000000..88f48441c81f
--- /dev/null
+++ b/sys/modules/netgraph/checksum/Makefile
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+.include <bsd.own.mk>
+
+KMOD= ng_checksum
+SRCS= ng_checksum.c opt_inet.h opt_inet6.h
+
+#.if !defined(KERNBUILDDIR)
+#
+#.if ${MK_INET_SUPPORT} != "no"
+#opt_inet.h:
+# echo "#define INET 1" > ${.TARGET}
+#.endif
+#.if ${MK_INET6_SUPPORT} != "no"
+#opt_inet6.h:
+# echo "#define INET6 1" > ${.TARGET}
+#.endif
+#.endif
+
+.include <bsd.kmod.mk>