Skip to content

Commit 2bdaf52

Browse files
committed
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 bitcoin/bitcoin#30527. 4. Install `net/py-zmq` package to enable the `interface_zmq.py` functional test. 5. Fix a formatting issue.
1 parent 228aba2 commit 2bdaf52

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

doc/build-netbsd.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NetBSD Build Guide
22

3-
**Updated for NetBSD [10.0](https://netbsd.org/releases/formal-10/NetBSD-10.0.html)**
3+
**Updated for NetBSD [10.1](https://netbsd.org/releases/formal-10/NetBSD-10.1.html)**
44

55
This guide describes how to build bitcoind, command-line utilities, and GUI on NetBSD.
66

@@ -83,17 +83,24 @@ pkgin install qrencode
8383

8484
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.
8585

86+
#### Notifications
87+
###### ZeroMQ
88+
89+
Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
90+
```bash
91+
pkgin zeromq
92+
```
8693

8794
#### Test Suite Dependencies
8895

8996
There is an included test suite that is useful for testing code changes when developing.
9097
To run the test suite (recommended), you will need to have Python 3 installed:
9198

9299
```bash
93-
pkgin install python39
100+
pkgin install python310 py310-zmq
94101
```
95102

96-
### Building Bitcoin Core
103+
## Building Bitcoin Core
97104

98105
### 1. Configuration
99106

0 commit comments

Comments
 (0)