From 3d58ea8f735ce57a62fc678ca36b388b9c731c83 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 22 Apr 2024 10:22:57 -0400 Subject: fsade: Simplify BFS_CAN_CHECK_CAPABILITIES --- src/fsade.h | 7 +------ src/prelude.h | 7 ------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/src/fsade.h b/src/fsade.h index 6300852..cd5c34f 100644 --- a/src/fsade.h +++ b/src/fsade.h @@ -13,12 +13,7 @@ #define BFS_CAN_CHECK_ACL BFS_USE_SYS_ACL_H -#if !defined(BFS_CAN_CHECK_CAPABILITIES) && BFS_USE_SYS_CAPABILITY_H -# include -# ifdef CAP_CHOWN -# define BFS_CAN_CHECK_CAPABILITIES true -# endif -#endif +#define BFS_CAN_CHECK_CAPABILITIES BFS_USE_LIBCAP #define BFS_CAN_CHECK_CONTEXT BFS_USE_LIBSELINUX diff --git a/src/prelude.h b/src/prelude.h index 9e64260..bf87386 100644 --- a/src/prelude.h +++ b/src/prelude.h @@ -52,9 +52,6 @@ extern const char bfs_version[]; #if __has_include() # define BFS_HAS_SYS_ACL_H true #endif -#if __has_include() -# define BFS_HAS_SYS_CAPABILITY_H true -#endif #if __has_include() # define BFS_HAS_SYS_EXTATTR_H true #endif @@ -82,7 +79,6 @@ extern const char bfs_version[]; #define BFS_HAS_MNTENT_H __GLIBC__ #define BFS_HAS_PATHS_H true #define BFS_HAS_SYS_ACL_H true -#define BFS_HAS_SYS_CAPABILITY_H __linux__ #define BFS_HAS_SYS_EXTATTR_H __FreeBSD__ #define BFS_HAS_SYS_MKDEV_H false #define BFS_HAS_SYS_PARAM_H true @@ -102,9 +98,6 @@ extern const char bfs_version[]; #ifndef BFS_USE_SYS_ACL_H # define BFS_USE_SYS_ACL_H (BFS_HAS_SYS_ACL_H && !__illumos__ && (!__linux__ || BFS_USE_LIBACL)) #endif -#ifndef BFS_USE_SYS_CAPABILITY_H -# define BFS_USE_SYS_CAPABILITY_H (BFS_HAS_SYS_CAPABILITY_H && !__FreeBSD__ && (!__linux__ || BFS_USE_LIBCAP)) -#endif #ifndef BFS_USE_SYS_EXTATTR_H # define BFS_USE_SYS_EXTATTR_H BFS_HAS_SYS_EXTATTR_H #endif -- cgit v1.2.3