diff options
author | bz <bz@FreeBSD.org> | 2011-09-27 13:27:17 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2011-09-27 13:27:17 +0000 |
commit | 221b0dbe0c46f6d460aad1fa5dce37bedf054db3 (patch) | |
tree | 5396173c83dc2000247d17e1fc189ef71122a8a8 /sys/modules | |
parent | f15c4ba986df76cc39987971217719f5ec3b4b06 (diff) | |
download | FreeBSD-src-221b0dbe0c46f6d460aad1fa5dce37bedf054db3.zip FreeBSD-src-221b0dbe0c46f6d460aad1fa5dce37bedf054db3.tar.gz |
Unbreak no-ip and no-inet6 module builds with ipfw. For now continue to
build the ip_fw_pfil.c hooks and ipfw even in case of no-ip under the
assumption that the private L2 hook (which hopefully eventually will be a
pfil hook as well) can still be useful.
Allow building the module without inet as well.
Glanced at by: jhb
MFC after: 3 days
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/ipfw/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/modules/ipfw/Makefile b/sys/modules/ipfw/Makefile index ec9b3cc..60ab848 100644 --- a/sys/modules/ipfw/Makefile +++ b/sys/modules/ipfw/Makefile @@ -8,7 +8,7 @@ KMOD= ipfw SRCS= ip_fw2.c ip_fw_pfil.c SRCS+= ip_fw_dynamic.c ip_fw_log.c SRCS+= ip_fw_sockopt.c ip_fw_table.c -SRCS+= opt_inet6.h opt_ipfw.h opt_ipsec.h +SRCS+= opt_inet.h opt_inet6.h opt_ipfw.h opt_ipsec.h CFLAGS+= -DIPFIREWALL CFLAGS+= -I${.CURDIR}/../../contrib/pf @@ -22,6 +22,10 @@ CFLAGS+= -I${.CURDIR}/../../contrib/pf # .if !defined(KERNBUILDDIR) +.if ${MK_INET_SUPPORT} != "no" +opt_inet.h: + echo "#define INET 1" > ${.TARGET} +.endif .if ${MK_INET6_SUPPORT} != "no" opt_inet6.h: echo "#define INET6 1" > ${.TARGET} |