1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

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
This commit is contained in:
Ed Maste 2016-09-19 16:07:32 +00:00
parent 36596c2a29
commit bd24e9a105
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305980

View File

@ -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>