mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
doc: Update NetBSD Build Guide
1. Update the documented NetBSD version. 2. Add the optional ZeroMQ package to align the guide with other *BSD systems. 3. Update the Python version to meet the minimum requirement specified in https://github.com/bitcoin/bitcoin/pull/30527. 4. Install `net/py-zmq` package to enable the `interface_zmq.py` functional test. 5. Fix a formatting issue.
This commit is contained in:
parent
228aba2c4d
commit
2bdaf52ed1
1 changed files with 10 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
# NetBSD Build Guide
|
# NetBSD Build Guide
|
||||||
|
|
||||||
**Updated for NetBSD [10.0](https://netbsd.org/releases/formal-10/NetBSD-10.0.html)**
|
**Updated for NetBSD [10.1](https://netbsd.org/releases/formal-10/NetBSD-10.1.html)**
|
||||||
|
|
||||||
This guide describes how to build bitcoind, command-line utilities, and GUI on NetBSD.
|
This guide describes how to build bitcoind, command-line utilities, and GUI on NetBSD.
|
||||||
|
|
||||||
|
@ -83,6 +83,13 @@ pkgin install qrencode
|
||||||
|
|
||||||
Otherwise, if you don't need QR encoding support, use the `-DWITH_QRENCODE=OFF` option to disable this feature in order to compile the GUI.
|
Otherwise, if you don't need QR encoding support, use the `-DWITH_QRENCODE=OFF` option to disable this feature in order to compile the GUI.
|
||||||
|
|
||||||
|
#### Notifications
|
||||||
|
###### ZeroMQ
|
||||||
|
|
||||||
|
Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
|
||||||
|
```bash
|
||||||
|
pkgin zeromq
|
||||||
|
```
|
||||||
|
|
||||||
#### Test Suite Dependencies
|
#### Test Suite Dependencies
|
||||||
|
|
||||||
|
@ -90,10 +97,10 @@ There is an included test suite that is useful for testing code changes when dev
|
||||||
To run the test suite (recommended), you will need to have Python 3 installed:
|
To run the test suite (recommended), you will need to have Python 3 installed:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pkgin install python39
|
pkgin install python310 py310-zmq
|
||||||
```
|
```
|
||||||
|
|
||||||
### Building Bitcoin Core
|
## Building Bitcoin Core
|
||||||
|
|
||||||
### 1. Configuration
|
### 1. Configuration
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue