aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2024-07-30 22:27:06 +0200
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2024-07-30 22:34:35 +0200
commit903def1ffd2903615de509d5869cadf5315f04e2 (patch)
tree26c943e2c533dfb8198850524bbea6019d9e9f8e /doc
parentd367a4e36f7357c4ebd018e8e1c9c5071db2e1c2 (diff)
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.
Diffstat (limited to 'doc')
-rw-r--r--doc/build-openbsd.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/build-openbsd.md b/doc/build-openbsd.md
index 264d5f2d08..0fba281dc1 100644
--- a/doc/build-openbsd.md
+++ b/doc/build-openbsd.md
@@ -66,6 +66,22 @@ Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compi
pkg_add qtbase qttools
```
+###### libqrencode
+
+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.
+```bash
+pkg_add libqrencode
+```
+---
+
+#### Notifications
+###### ZeroMQ
+
+Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
+```bash
+pkg_add zeromq
+```
+
## Building Bitcoin Core
**Important**: Use `gmake` (the non-GNU `make` will exit with an error).