From 2e8c7ccd992ef5ce92beb08b316cc7eabe0f0786 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Tue, 1 Aug 2000 00:44:42 +0000 Subject: [PATCH] Back out opt_ipfilter.h creation I add recently and add -DIPFILTER=1 to CFLAGS instead According to other sources, opt_ipfilter.h not supposed to be included for modules --- sys/modules/ipfilter/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sys/modules/ipfilter/Makefile b/sys/modules/ipfilter/Makefile index 8ed5fddeebf..3c78bf9e45b 100644 --- a/sys/modules/ipfilter/Makefile +++ b/sys/modules/ipfilter/Makefile @@ -3,14 +3,11 @@ .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 opt_ipfilter.h + ip_log.c ip_fil.c fil.c NOMAN= -CFLAGS+= -DIPFILTER_LKM -DIPFILTER_LOG +CFLAGS+= -DIPFILTER=1 -DIPFILTER_LKM -DIPFILTER_LOG # # If you don't want long functionality remove -DIPFILTER_LOG # -opt_ipfilter.h: - echo "#define IPFILTER 1" > opt_ipfilter.h - .include