diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-11-29 18:37:29 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-12-04 12:46:13 +0100 |
commit | ae6ea5a6fa4a674fc1c989df6f4ec945df1aa534 (patch) | |
tree | f9d64677d22b9b0127c32c76b136bf71c269fb4c /doc | |
parent | 4f9e993bc9beb8261022aad6668d675dccb1e6c4 (diff) |
Update build-unix.md to mention --disable-wallet
Mention the new --disable-wallet mode.
Also, correct the BDB entry in the dependencies table.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build-unix.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md index 27228cdc1b..1d9d96a1ca 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -22,7 +22,7 @@ Dependencies Library Purpose Description ------- ------- ----------- libssl SSL Support Secure communications - libdb4.8 Berkeley DB Blockchain & wallet storage + libdb4.8 Berkeley DB Wallet storage libboost Boost C++ Library miniupnpc UPnP Support Optional firewall-jumping support qt GUI GUI toolkit @@ -178,3 +178,12 @@ Hardening enables the following features: RW- R-- RW- The STK RW- means that the stack is readable and writeable but not executable. + +Disable-wallet mode +-------------------- +When the intention is to run only a P2P node without a wallet, bitcoin may be compiled in +disable-wallet mode with: + + ./configure --disable-wallet + +In this case there is no dependency on Berkeley DB 4.8. |