diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-02-01 11:01:42 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-02-01 11:01:42 -0500 |
commit | 33d320ab80aebb89dc63931684ef2e748b5fb91c (patch) | |
tree | 0d501481e3c76b48ea6a9d1a018c589703b628c8 /posix1e.h | |
parent | 185026706d926d1f94bd1c42a11dd83e6b8e74ec (diff) | |
download | bfs-33d320ab80aebb89dc63931684ef2e748b5fb91c.tar.xz |
util: Allow configuration macros to be specified with -D
In case we need to override them at build time.
Diffstat (limited to 'posix1e.h')
-rw-r--r-- | posix1e.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ #include "util.h" #include <stdbool.h> -#if BFS_HAS_SYS_CAPABILITY && !__FreeBSD__ +#if !defined(BFS_HAS_POSIX1E_CAPABILITIES) && BFS_HAS_SYS_CAPABILITY && !__FreeBSD__ # include <sys/capability.h> # ifdef CAP_CHOWN # define BFS_HAS_POSIX1E_CAPABILITIES true |