From b97185812e6fa21461d1114c7e62a247cfa74ff9 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 9 Nov 2021 07:23:18 +0800 Subject: [PATCH 1/2] doc: remove Boost build note from build-unix.md We don't do this for any other dependency, and users are better looking at the actual Boost site/docs. This isn't something we should need to have in our build docs. --- doc/build-unix.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/doc/build-unix.md b/doc/build-unix.md index 70bbb3f8afb..5f9b265e939 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -234,15 +234,6 @@ Otherwise, you can build Bitcoin Core from self-compiled [depends](/depends/READ **Note**: You only need Berkeley DB if the wallet is enabled (see [*Disable-wallet mode*](#disable-wallet-mode)). -Boost ------ -If you need to build Boost yourself: - - sudo su - ./bootstrap.sh - ./bjam install - - Security -------- To help make your Bitcoin Core installation more secure by making certain attacks impossible to From ea360d69e5fec8f96630354c4adc9df9dbab8329 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 9 Nov 2021 07:26:00 +0800 Subject: [PATCH 2/2] doc: remove redundant optionals from build-unix.md Calling dependencies optional in a list of already optional dependencies is redundant. --- doc/build-unix.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/build-unix.md b/doc/build-unix.md index 5f9b265e939..5d9e5ec2f4e 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -42,12 +42,12 @@ Optional dependencies: ------------|------------------|---------------------- miniupnpc | UPnP Support | Firewall-jumping support libnatpmp | NAT-PMP Support | Firewall-jumping support - libdb4.8 | Berkeley DB | Optional, wallet storage (only needed when legacy wallet enabled) + libdb4.8 | Berkeley DB | Wallet storage (only needed when legacy wallet enabled) qt | GUI | GUI toolkit (only needed when GUI enabled) - libqrencode | QR codes in GUI | Optional for generating QR codes (only needed when GUI enabled) - libzmq3 | ZMQ notification | Optional, allows generating ZMQ notifications (requires ZMQ version >= 4.0.0) - sqlite3 | SQLite DB | Optional, wallet storage (only needed when descriptor wallet enabled) - systemtap | Tracing (USDT) | Optional, statically defined tracepoints + libqrencode | QR codes in GUI | QR code generation (only needed when GUI enabled) + libzmq3 | ZMQ notification | ZMQ notifications (requires ZMQ version >= 4.0.0) + sqlite3 | SQLite DB | Wallet storage (only needed when descriptor wallet enabled) + systemtap | Tracing (USDT) | Statically defined tracepoints For the versions used, see [dependencies.md](dependencies.md)