svn commit: r193954 - head/sys/conf

Bjoern A. Zeeb bz at FreeBSD.org
Wed Jun 10 21:06:08 UTC 2009


Author: bz
Date: Wed Jun 10 21:06:07 2009
New Revision: 193954
URL: http://svn.freebsd.org/changeset/base/193954

Log:
  ipfirewall insists on INET:
  	#error IPFIREWALL requires INET.
  Track it here to not build ipfirewall with no INET in the kernel.

Modified:
  head/sys/conf/files

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Wed Jun 10 21:05:37 2009	(r193953)
+++ head/sys/conf/files	Wed Jun 10 21:06:07 2009	(r193954)
@@ -2366,10 +2366,10 @@ netinet/ipfw/ip_dummynet.c	optional dumm
 netinet/ip_ecn.c		optional inet | inet6
 netinet/ip_encap.c		optional inet | inet6
 netinet/ip_fastfwd.c		optional inet
-netinet/ipfw/ip_fw2.c		optional ipfirewall \
+netinet/ipfw/ip_fw2.c		optional inet ipfirewall \
 	compile-with "${NORMAL_C} -I$S/contrib/pf"
-netinet/ipfw/ip_fw_pfil.c	optional ipfirewall
-netinet/ipfw/ip_fw_nat.c	optional ipfirewall_nat
+netinet/ipfw/ip_fw_pfil.c	optional inet ipfirewall
+netinet/ipfw/ip_fw_nat.c	optional inet ipfirewall_nat
 netinet/ip_icmp.c		optional inet
 netinet/ip_input.c		optional inet
 netinet/ip_ipsec.c		optional inet ipsec


More information about the svn-src-all mailing list