diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-05-07 12:08:45 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-05-07 12:14:06 -0400 |
commit | e889335e0a5f5dfb2e15219d841ad8725e4a719b (patch) | |
tree | 11d428cbaa540d230fe0741382441dffb8092b03 /README.md | |
parent | 4a29dd9ec419324dac0b7ffaefbaa572fdc3a041 (diff) | |
download | bfs-e889335e0a5f5dfb2e15219d841ad8725e4a719b.tar.xz |
docs: Move dependency flag info from the README to docs/BUILDING.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -234,15 +234,6 @@ These are installed by default on many systems, and easy to install on most othe Refer to your operating system's documentation on building software. `bfs` also depends on some system libraries for some of its features. -These dependencies are optional, and can be turned off at build time if necessary by setting the appropriate variable to the empty string (e.g. `make WITH_ONIGURUMA=`). - -| Dependency | Platforms | `make` flag | -|-------------------------------------------------------|------------|------------------| -| [acl](https://savannah.nongnu.org/projects/acl) | Linux only | `WITH_ACL` | -| [attr](https://savannah.nongnu.org/projects/attr) | Linux only | `WITH_ATTR` | -| [libcap](https://sites.google.com/site/fullycapable/) | Linux only | `WITH_LIBCAP` | -| [Oniguruma](https://github.com/kkos/oniguruma) | All | `WITH_ONIGURUMA` | - Here's how to install them on some common platforms: <pre> @@ -273,6 +264,9 @@ Here's how to install them on some common platforms: <strong>Homebrew</strong> $ brew install oniguruma </pre> + +These dependencies are technically optional, though strongly recommended. +See the [build documentation](/docs/BUILDING.md#dependencies) for how to disable them. </details> <details> |