Bug #322 ยป ipfilter.patch
sys/net/ipfilter/Makefile 18 Dec 2006 19:03:08 -0000 | ||
---|---|---|
SRCS= mlfk_ipl.c ip_nat.c ip_frag.c ip_state.c ip_proxy.c ip_auth.c \
|
||
ip_log.c ip_fil.c fil.c
|
||
NOMAN=
|
||
.if !defined(NOINET6)
|
||
CFLAGS+= -DUSE_INET6
|
||
.endif
|
||
CFLAGS+= -include ipf_inet6.h
|
||
CFLAGS+= -DIPFILTER_LKM -DIPFILTER_LOG
|
||
CFLAGS+= -I${.CURDIR}/../../contrib/ipfilter
|
||
CFLAGS+= -I${.CURDIR}/../../contrib/ipfilter -I${.CURDIR}
|
||
#
|
||
# If you don't want log functionality remove -DIPFILTER_LOG
|
||
#
|
sys/net/ipfilter/ipf_inet6.h 18 Dec 2006 19:06:43 -0000 | ||
---|---|---|
/* $DragonFly$ */
|
||
/* This file uses the kernel config to determine if IPV6 should be used. */
|
||
#include "opt_inet6.h"
|
||
#ifdef INET6
|
||
#define USE_INET6 1
|
||
#endif
|