svn commit: r193950 - head/sys/conf

Bjoern A. Zeeb bz at FreeBSD.org
Wed Jun 10 20:57:07 UTC 2009


Author: bz
Date: Wed Jun 10 20:57:06 2009
New Revision: 193950
URL: http://svn.freebsd.org/changeset/base/193950

Log:
  ip_divert.c requires both INET and IPFIREWALL to be present:
  	#error "IPDIVERT requires INET."
  	#error "IPDIVERT requires IPFIREWALL"
  so properly track those depencies here.

Modified:
  head/sys/conf/files

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Wed Jun 10 20:44:13 2009	(r193949)
+++ head/sys/conf/files	Wed Jun 10 20:57:06 2009	(r193950)
@@ -2361,7 +2361,7 @@ netinet/in_pcb.c		optional inet
 netinet/in_proto.c		optional inet \
 	compile-with "${NORMAL_C} -I$S/contrib/pf"
 netinet/in_rmx.c		optional inet
-netinet/ip_divert.c		optional ipdivert
+netinet/ip_divert.c		optional inet ipdivert ipfirewall
 netinet/ipfw/ip_dummynet.c	optional dummynet
 netinet/ip_ecn.c		optional inet | inet6
 netinet/ip_encap.c		optional inet | inet6


More information about the svn-src-all mailing list