svn commit: r305980 - head/usr.sbin/uefisign

Ed Maste emaste at FreeBSD.org
Mon Sep 19 16:07:34 UTC 2016


Author: emaste
Date: Mon Sep 19 16:07:32 2016
New Revision: 305980
URL: https://svnweb.freebsd.org/changeset/base/305980

Log:
  uefisign: Remove backwards-compatibility sys/capability.h support
  
  uefisign previously included sys/capability.h or sys/capsicum.h based
  on __FreeBSD_version in order to facilitate development on the stable
  branch. The Capsicum header is now installed as sys/capsicum.h in
  stable/10 and FreeBSD 10.3, so there's no need for the backwards
  compatibility support.
  
  Reviewed by:	trasz
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/uefisign/child.c

Modified: head/usr.sbin/uefisign/child.c
==============================================================================
--- head/usr.sbin/uefisign/child.c	Mon Sep 19 16:05:10 2016	(r305979)
+++ head/usr.sbin/uefisign/child.c	Mon Sep 19 16:07:32 2016	(r305980)
@@ -32,11 +32,7 @@
 __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
-#if __FreeBSD_version >= 1100000
 #include <sys/capsicum.h>
-#else
-#include <sys/capability.h>
-#endif
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <assert.h>


More information about the svn-src-head mailing list