summaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2003-09-23 17:54:04 +0000
committerSam Leffler <sam@FreeBSD.org>2003-09-23 17:54:04 +0000
commit134ea22494d53dc5228a4b2520fd7b28c17297d4 (patch)
treec61b991702ec6f77c0e1b96cda74ae091fa2e749 /sys/modules
parent6c7aa7fe1bd93e358a8b7d3d3fa46a7ca050727e (diff)
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/bridge/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/modules/bridge/Makefile b/sys/modules/bridge/Makefile
index d2c1e32391da..70f6b40b4b29 100644
--- a/sys/modules/bridge/Makefile
+++ b/sys/modules/bridge/Makefile
@@ -3,5 +3,15 @@
.PATH: ${.CURDIR}/../../net
KMOD= bridge
SRCS= bridge.c
+SRCS+= opt_pfil_hooks.h
+
+#
+# By default don't enable pfil hooks support. This means you
+# cannot use ipfilter together with the bridge. To enable it
+# uncomment the line below
+#
+opt_pfil_hooks.h:
+# echo "#define PFIL_HOOKS 1" > opt_pfil_hooks.h
+ touch opt_pfil_hooks.h
.include <bsd.kmod.mk>