svn commit: r196229 - head/sys/netinet

Marko Zec zec at FreeBSD.org
Fri Aug 14 22:43:25 UTC 2009


Author: zec
Date: Fri Aug 14 22:43:25 2009
New Revision: 196229
URL: http://svn.freebsd.org/changeset/base/196229

Log:
  SCTP is not yet compatible with options VIMAGE kernels although it compiles
  with VIMAGE defined, so explicitly disallow building such kernels.
  
  Reviewed by:	rrs
  Approved by:	re (rwatson), julian (mentor)

Modified:
  head/sys/netinet/sctp_os_bsd.h

Modified: head/sys/netinet/sctp_os_bsd.h
==============================================================================
--- head/sys/netinet/sctp_os_bsd.h	Fri Aug 14 22:41:39 2009	(r196228)
+++ head/sys/netinet/sctp_os_bsd.h	Fri Aug 14 22:43:25 2009	(r196229)
@@ -78,6 +78,10 @@ __FBSDID("$FreeBSD$");
 #include <netinet/ip_icmp.h>
 #include <netinet/icmp_var.h>
 
+#ifdef VIMAGE
+#error "SCTP is not yet compatible with VIMAGE."
+#endif
+
 #ifdef IPSEC
 #include <netipsec/ipsec.h>
 #include <netipsec/key.h>


More information about the svn-src-head mailing list