mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
Fix standalone module build.
Reported by: Boris Samorodov <bsam@ipt.ru>
This commit is contained in:
parent
474a2ca954
commit
cff6281847
1 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue