summaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-04 15:17:38 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-04 15:26:21 -0400
commit1109843d017e0320f0d18bfc398e27ff25592dfb (patch)
tree2748166ea80eeea9767c004151bec8f13b2c0d49 /GNUmakefile
parent0219441e5911b35035e927846cd8a0af77324f07 (diff)
downloadbfs-1109843d017e0320f0d18bfc398e27ff25592dfb.tar.xz
build: Don't use libattr
We only rely on interfaces like listxattr() which are provided by the C library itself.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 080fb17..8685ca3 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -125,7 +125,6 @@ endif # USE_ONIGURUMA
ifeq ($(OS),Linux)
ifndef NOLIBS
USE_ACL := y
-USE_ATTR := y
USE_LIBCAP := y
USE_LIBURING := y
endif
@@ -136,12 +135,6 @@ else
LOCAL_CPPFLAGS += -DBFS_USE_SYS_ACL_H=0
endif
-ifdef USE_ATTR
-LOCAL_LDLIBS += -lattr
-else
-LOCAL_CPPFLAGS += -DBFS_USE_SYS_XATTR_H=0
-endif
-
ifdef USE_LIBCAP
LOCAL_LDLIBS += -lcap
else