From 5caa4066232c8d615bb95af2e5d8e9b342a0f653 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 30 Sep 2024 11:42:05 -0400 Subject: build: Add -Wundef-prefix=BFS_ --- src/bfs.h | 5 +++++ src/fsade.c | 7 +++++++ 2 files changed, 12 insertions(+) (limited to 'src') diff --git a/src/bfs.h b/src/bfs.h index 91c6540..ad6a628 100644 --- a/src/bfs.h +++ b/src/bfs.h @@ -33,10 +33,15 @@ #ifndef BFS_COMMAND # define BFS_COMMAND "bfs" #endif + #ifndef BFS_HOMEPAGE # define BFS_HOMEPAGE "https://tavianator.com/projects/bfs.html" #endif +#ifndef BFS_LINT +# define BFS_LINT false +#endif + // This is a symbol instead of a literal so we don't have to rebuild everything // when the version number changes extern const char bfs_version[]; diff --git a/src/fsade.c b/src/fsade.c index 30b3018..dfdf125 100644 --- a/src/fsade.c +++ b/src/fsade.c @@ -36,6 +36,13 @@ # define BFS_USE_XATTR true #endif +#ifndef BFS_USE_EXTATTR +# define BFS_USE_EXTATTR false +#endif +#ifndef BFS_USE_XATTR +# define BFS_USE_XATTR false +#endif + /** * Many of the APIs used here don't have *at() variants, but we can try to * emulate something similar if /proc/self/fd is available. -- cgit v1.2.3