summaryrefslogtreecommitdiffstats
path: root/sys/modules/ipdivert
diff options
context:
space:
mode:
authorbz <bz@FreeBSD.org>2012-01-22 02:16:31 +0000
committerbz <bz@FreeBSD.org>2012-01-22 02:16:31 +0000
commit6aadb2bfe6ffccddb769e61e1dd5ba14dd5b53c5 (patch)
tree80a4a9dd47c096caa224d026aa158da8f8622489 /sys/modules/ipdivert
parenta8d3ef905d6a09a0cfa4378c505c468682b9a267 (diff)
downloadFreeBSD-src-6aadb2bfe6ffccddb769e61e1dd5ba14dd5b53c5.zip
FreeBSD-src-6aadb2bfe6ffccddb769e61e1dd5ba14dd5b53c5.tar.gz
Fix ip_divert handling of inet and inet6 and module building some more.
Properly sort the "carp" case in modules/Makefile after it was renamed. Reported by: bde (most) Reviewed by: bde MFC after: 3 days
Diffstat (limited to 'sys/modules/ipdivert')
-rw-r--r--sys/modules/ipdivert/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/ipdivert/Makefile b/sys/modules/ipdivert/Makefile
index 886802a..14f92ad 100644
--- a/sys/modules/ipdivert/Makefile
+++ b/sys/modules/ipdivert/Makefile
@@ -1,13 +1,21 @@
# $FreeBSD$
+.include <bsd.own.mk>
+
.PATH: ${.CURDIR}/../../netinet
KMOD= ipdivert
-SRCS= ip_divert.c opt_inet6.h
+SRCS= ip_divert.c opt_inet.h opt_inet6.h
.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}
.endif
+.endif
.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud