From d39d6999a78747f8048fd57e2ca3143c81c53537 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 9 Jan 2024 13:17:24 -0500 Subject: config: Disable sys/acl.h on illumos Their ACL API is quite a bit different from most. Link: https://illumos.org/man/2/acl --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index 24c6258..85ad57e 100644 --- a/src/config.h +++ b/src/config.h @@ -97,7 +97,7 @@ # define BFS_USE_PATHS_H BFS_HAS_PATHS_H #endif #ifndef BFS_USE_SYS_ACL_H -# define BFS_USE_SYS_ACL_H BFS_HAS_SYS_ACL_H +# define BFS_USE_SYS_ACL_H (BFS_HAS_SYS_ACL_H && !__illumos__) #endif #ifndef BFS_USE_SYS_CAPABILITY_H # define BFS_USE_SYS_CAPABILITY_H (BFS_HAS_SYS_CAPABILITY_H && !__FreeBSD__) -- cgit v1.2.3