Skip to content

Commit 903def1

Browse files
committed
doc: mention optional dependencies (qrencode, zmq) in OpenBSD build docs
The wording is taken from the FreeBSD build docs. See the following links for the package names: - https://openbsd.app/?search=libqrencode - https://openbsd.app/?search=zeromq Thanks to hebasto for noticing that this was missing.
1 parent d367a4e commit 903def1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

doc/build-openbsd.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,22 @@ Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compi
6666
pkg_add qtbase qttools
6767
```
6868

69+
###### libqrencode
70+
71+
The GUI can encode addresses in a QR Code. To build in QR support for the GUI, install `libqrencode`. Skip if not using the GUI or don't want QR code functionality.
72+
```bash
73+
pkg_add libqrencode
74+
```
75+
---
76+
77+
#### Notifications
78+
###### ZeroMQ
79+
80+
Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
81+
```bash
82+
pkg_add zeromq
83+
```
84+
6985
## Building Bitcoin Core
7086

7187
**Important**: Use `gmake` (the non-GNU `make` will exit with an error).

0 commit comments

Comments
 (0)