From 46387a7dcda93e7df9f5baa3ead753c0feeff122 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 6 Nov 2022 11:52:49 -0500 Subject: 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()`, 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. --- src/mtab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mtab.c') diff --git a/src/mtab.c b/src/mtab.c index adc3f58..a9f5b41 100644 --- a/src/mtab.c +++ b/src/mtab.c @@ -26,11 +26,11 @@ #include #include -#if BFS_HAS_SYS_PARAM +#if BFS_USE_SYS_PARAM_H # include #endif -#if BFS_HAS_MNTENT +#if BFS_USE_MNTENT_H # define BFS_MNTENT 1 #elif BSD # define BFS_MNTINFO 1 -- cgit v1.2.3