Skip to content

Commit bc532c9

Browse files
committed
doc: add with_bdb to unix build docs
1 parent b52d547 commit bc532c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/build-freebsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Run `cmake -B build -LH` to see the full list of available options.
118118
This enables support for both wallet types, assuming
119119
`sqlite3` and `db4` are both installed.
120120
```bash
121-
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include"
121+
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include" -DWITH_BDB=ON
122122
```
123123

124124
##### No Wallet or GUI

doc/build-openbsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Run `cmake -B build -LH` to see the full list of available options.
112112
This enables support for both wallet types:
113113

114114
```bash
115-
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include"
115+
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include" -DWITH_BDB=ON
116116
```
117117

118118
### 2. Compile

doc/build-unix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ and configure using the following:
162162
```bash
163163
export BDB_PREFIX="/path/to/bitcoin/depends/x86_64-pc-linux-gnu"
164164

165-
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include"
165+
cmake -B build -DBerkeleyDB_INCLUDE_DIR:PATH="${BDB_PREFIX}/include" -DWITH_BDB=ON
166166
```
167167

168168
**Note**: Make sure that `BDB_PREFIX` is an absolute path.

0 commit comments

Comments
 (0)