diff options
author | ache <ache@FreeBSD.org> | 2000-07-31 23:58:38 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-07-31 23:58:38 +0000 |
commit | 66921523184adfd27e382e0deb15428f629097c1 (patch) | |
tree | 290f90d283e65031f73f4e3d21409c0a24232963 | |
parent | 67331bf98c72c8f6d50b61ca5925f00192a488e6 (diff) | |
download | FreeBSD-src-66921523184adfd27e382e0deb15428f629097c1.zip FreeBSD-src-66921523184adfd27e382e0deb15428f629097c1.tar.gz |
Generate opt_ipfilter.h to fix 'make depend'
-rw-r--r-- | sys/modules/ipfilter/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/modules/ipfilter/Makefile b/sys/modules/ipfilter/Makefile index c2c6de7..66181c7 100644 --- a/sys/modules/ipfilter/Makefile +++ b/sys/modules/ipfilter/Makefile @@ -3,11 +3,14 @@ .PATH: ${.CURDIR}/../../netinet 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.c fil.c + ip_log.c ip_fil.c fil.c opt_ipfilter.h NOMAN= CFLAGS+= -DIPFILTER_LKM -DIPFILTER_LOG # # If you don't want long functionality remove -DIPFILTER_LOG # +opt_ipfilter.h: + echo "#define NIPFILTER 1" > opt_ipfilter.h + .include <bsd.kmod.mk> |