diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2005-06-03 15:31:10 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2005-06-03 15:31:10 +0000 |
commit | cff6281847cefd3dc1880baae92bd9a2cd65abc2 (patch) | |
tree | 2e5b64f7125cffd6ec683b35052e50d4a2bfc6fb /sys/modules/ipfilter | |
parent | 474a2ca954ca6dbc654987b3747257c8218cb3ea (diff) |
Fix standalone module build.
Reported by: Boris Samorodov <bsam@ipt.ru>
Notes
Notes:
svn path=/head/; revision=146934
Diffstat (limited to 'sys/modules/ipfilter')
-rw-r--r-- | sys/modules/ipfilter/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/modules/ipfilter/Makefile b/sys/modules/ipfilter/Makefile index 2acd4b00c557..9cb029068b6f 100644 --- a/sys/modules/ipfilter/Makefile +++ b/sys/modules/ipfilter/Makefile @@ -6,9 +6,15 @@ KMOD= ipl SRCS= mlfk_ipl.c ip_nat.c ip_frag.c ip_state.c ip_proxy.c ip_auth.c \ ip_log.c ip_fil_freebsd.c fil.c ip_lookup.c ip_pool.c ip_htable.c \ ip_sync.c +SRCS+= opt_bpf.h opt_inet6.h + +opt_bpf.h: + echo "#define DEV_BPF 1" > ${.TARGET} .if !defined(NO_INET6) CFLAGS+= -DUSE_INET6 +opt_inet6.h: + echo "#define INET6 1" > ${.TARGET} .endif CFLAGS+= -I${.CURDIR}/../../contrib/ipfilter CFLAGS+= -DIPFILTER=1 -DIPFILTER_LKM -DIPFILTER_LOG -DIPFILTER_LOOKUP |