Skip to content

Commit

Permalink
doc: mention optional dependencies (qrencode, zmq) in OpenBSD build docs
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
theStack committed Jul 30, 2024
1 parent d367a4e commit 903def1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions doc/build-openbsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit 903def1

Please sign in to comment.