From 976514edfb6063170049f561f5edbf330bbe4132 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 3 Jan 2024 16:42:07 -0500 Subject: config: Disable xattrs on DragonFly BSD DragonFly is missing extattr_get_link() and extattr_list_{file,link}(). --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/config.h') diff --git a/src/config.h b/src/config.h index ed9a869..24c6258 100644 --- a/src/config.h +++ b/src/config.h @@ -103,7 +103,7 @@ # define BFS_USE_SYS_CAPABILITY_H (BFS_HAS_SYS_CAPABILITY_H && !__FreeBSD__) #endif #ifndef BFS_USE_SYS_EXTATTR_H -# define BFS_USE_SYS_EXTATTR_H BFS_HAS_SYS_EXTATTR_H +# define BFS_USE_SYS_EXTATTR_H (BFS_HAS_SYS_EXTATTR_H && !__DragonFly__) #endif #ifndef BFS_USE_SYS_MKDEV_H # define BFS_USE_SYS_MKDEV_H BFS_HAS_SYS_MKDEV_H -- cgit v1.2.3