diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-04 15:17:38 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-04 15:26:21 -0400 |
commit | 1109843d017e0320f0d18bfc398e27ff25592dfb (patch) | |
tree | 2748166ea80eeea9767c004151bec8f13b2c0d49 /docs | |
parent | 0219441e5911b35035e927846cd8a0af77324f07 (diff) | |
download | bfs-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 'docs')
-rw-r--r-- | docs/BUILDING.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/BUILDING.md b/docs/BUILDING.md index 02f9756..7eb3a37 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -56,7 +56,7 @@ Here are some of the common ones; check the [`GNUmakefile`](/GNUmakefile) for mo | `CC` | The C compiler to use, e.g. `make CC=clang` | | `CFLAGS`<br>`EXTRA_CFLAGS` | Override/add to the default compiler flags | | `LDFLAGS`<br>`EXTRA_LDFLAGS` | Override/add to the linker flags | -| `USE_ACL`<br>`USE_ATTR`<br>... | Enable/disable [optional dependencies] | +| `USE_ACL`<br>`USE_LIBCAP`<br>... | Enable/disable [optional dependencies] | | `TEST_FLAGS` | `tests.sh` flags for `make check` | | `BUILDDIR` | The build output directory (default: `.`) | | `DESTDIR` | The root directory for `make install` | @@ -73,13 +73,11 @@ These dependencies are optional, and can be turned off at build time if necessar | Dependency | Platforms | `make` flag | |-------------|------------|-----------------| | [acl] | Linux only | `USE_ACL` | -| [attr] | Linux only | `USE_ATTR` | | [libcap] | Linux only | `USE_LIBCAP` | | [liburing] | Linux only | `USE_LIBURING` | | [Oniguruma] | All | `USE_ONIGURUMA` | [acl]: https://savannah.nongnu.org/projects/acl -[attr]: https://savannah.nongnu.org/projects/attr [libcap]: https://sites.google.com/site/fullycapable/ [liburing]: https://github.com/axboe/liburing [Oniguruma]: https://github.com/kkos/oniguruma |