diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 11:52:49 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 16:37:14 -0500 |
commit | 46387a7dcda93e7df9f5baa3ead753c0feeff122 (patch) | |
tree | 73223994a7fb667d88df4849a5056696e203bb63 /src/fsade.c | |
parent | 0a5a80c98cc7e5d8735b615fa197a6cff2bb08cc (diff) | |
download | bfs-46387a7dcda93e7df9f5baa3ead753c0feeff122.tar.xz |
util: Get rid of BFS_HAS_INCLUDE() wrapper for __has_include()
Since __has_include() needs special preprocessing rules (e.g. not
expanding `linux` in `__has_include(<linux/stat.h>)`, macros that expand
to __has_include() do not necessarily behave correctly. Instead, we
have to directly test `#if __has_include(...)`.
See https://bugs.llvm.org/show_bug.cgi?id=37990 for more details.
Diffstat (limited to 'src/fsade.c')
-rw-r--r-- | src/fsade.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fsade.c b/src/fsade.c index 9e5374f..7a7201e 100644 --- a/src/fsade.c +++ b/src/fsade.c @@ -32,9 +32,9 @@ # include <sys/capability.h> #endif -#if BFS_HAS_SYS_EXTATTR +#if BFS_USE_SYS_EXTATTR_H # include <sys/extattr.h> -#elif BFS_HAS_SYS_XATTR +#elif BFS_USE_SYS_XATTR_H # include <sys/xattr.h> #endif @@ -303,7 +303,7 @@ int bfs_check_xattrs(const struct BFTW *ftwbuf) { const char *path = fake_at(ftwbuf); ssize_t len; -#if BFS_HAS_SYS_EXTATTR +#if BFS_USE_SYS_EXTATTR_H ssize_t (*extattr_list)(const char *, int, void*, size_t) = ftwbuf->type == BFS_LNK ? extattr_list_link : extattr_list_file; @@ -342,7 +342,7 @@ int bfs_check_xattr_named(const struct BFTW *ftwbuf, const char *name) { const char *path = fake_at(ftwbuf); ssize_t len; -#if BFS_HAS_SYS_EXTATTR +#if BFS_USE_SYS_EXTATTR_H ssize_t (*extattr_get)(const char *, int, const char *, void*, size_t) = ftwbuf->type == BFS_LNK ? extattr_get_link : extattr_get_file; |