svn commit: r272523 - head/sys/sys

Bjoern A. Zeeb bz at FreeBSD.org
Sat Oct 4 14:17:31 UTC 2014


Author: bz
Date: Sat Oct  4 14:17:30 2014
New Revision: 272523
URL: https://svnweb.freebsd.org/changeset/base/272523

Log:
  Put and #ifdef _KERNEL around the #include for opt_capsicum.h to
  hopefully allow the build to finish after r272505.

Modified:
  head/sys/sys/filedesc.h

Modified: head/sys/sys/filedesc.h
==============================================================================
--- head/sys/sys/filedesc.h	Sat Oct  4 14:00:25 2014	(r272522)
+++ head/sys/sys/filedesc.h	Sat Oct  4 14:17:30 2014	(r272523)
@@ -33,7 +33,9 @@
 #ifndef _SYS_FILEDESC_H_
 #define	_SYS_FILEDESC_H_
 
+#ifdef _KERNEL
 #include "opt_capsicum.h"
+#endif
 
 #include <sys/caprights.h>
 #include <sys/queue.h>


More information about the svn-src-head mailing list