diff options
author | Wladimir J. van der Laan <laanwj@protonmail.com> | 2020-10-27 10:16:43 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@protonmail.com> | 2020-10-27 10:17:14 +0100 |
commit | c1564baf3b5e1e069e5fc573c7cbe875e9d84e87 (patch) | |
tree | f76d00002202544d8644a285e2b8223e426a8e7f | |
parent | 67d4643a1a763b893ee69f6bbbf59ef1f2cb0d51 (diff) | |
parent | 47e2a35fac9951c125b784a9d14027338c56c750 (diff) |
Merge #19124: doc: Document ALLOW_HOST_PACKAGES dependency option
47e2a35fac9951c125b784a9d14027338c56c750 doc: Document ALLOW_HOST_PACKAGES dependency option (skmcontrib)
Pull request description:
Provided entry in depends, README.md to ensure that ALLOW_HOST_PACKAGES dependency option is documented, #19113
ACKs for top commit:
hebasto:
ACK 47e2a35fac9951c125b784a9d14027338c56c750.
Tree-SHA512: 10d9285885be25f092881e4886c6a804cd42b5224bdf1dfa8b8369463808ddaf533a8604f14f7fe45478434a22feae98053f4731b51d976c071d69882bdac72b
-rw-r--r-- | depends/README.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/depends/README.md b/depends/README.md index 869ebe12fd..5225a6d5c4 100644 --- a/depends/README.md +++ b/depends/README.md @@ -105,6 +105,10 @@ The following can be set when running make: `make FOO=bar` <dd>Don't download/build/cache SQLite</dd> <dt>NO_UPNP</dt> <dd>Don't download/build/cache packages needed for enabling upnp</dd> +<dt>ALLOW_HOST_PACKAGES</dt> +<dd>Packages that are missed in dependencies (due to `NO_*` option or +build script logic) are searched for among the host system packages using +`pkg-config`. It allows building with packages of other (newer) versions</dd> <dt>MULTIPROCESS</dt> <dd>build libmultiprocess (experimental, requires cmake)</dd> <dt>DEBUG</dt> |