diff options
Diffstat (limited to 'src/prelude.h')
-rw-r--r-- | src/prelude.h | 7 |
1 files changed, 0 insertions, 7 deletions
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(<sys/acl.h>) # define BFS_HAS_SYS_ACL_H true #endif -#if __has_include(<sys/capability.h>) -# define BFS_HAS_SYS_CAPABILITY_H true -#endif #if __has_include(<sys/extattr.h>) # 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 |