doc: mention -DWITH_ZMQ=ON in BSD build guides
What changed, and why it matters
This commit only updates three documentation files for FreeBSD, NetBSD, and OpenBSD build guides. It corrects the instructions for enabling ZeroMQ support by adding the required CMake option `-DWITH_ZMQ=ON`. No code, build system, or runtime behavior is changed.
No security action needed. This is a documentation-only correction.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies three markdown documentation files (doc/build-freebsd.md, doc/build-netbsd.md, doc/build-openbsd.md). Each change replaces a sentence implying ZMQ support is auto-enabled when the package is installed with explicit instructions to pass -DWITH_ZMQ=ON at configure time. There are no changes to source code, CMakeLists.txt, build scripts, or any executable logic.
Changed components
doc/build-freebsd.mddoc/build-netbsd.mddoc/build-openbsd.mdInspect captured patch +3 / −3
diff --git a/doc/build-freebsd.md b/doc/build-freebsd.md
index de373d1e..40740d7f 100644
--- a/doc/build-freebsd.md
+++ b/doc/build-freebsd.md
@@ -64,7 +64,7 @@ Otherwise, if you don't need QR encoding support, use the `-DWITH_QRENCODE=OFF`
#### Notifications
###### ZeroMQ
-Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
+Bitcoin Core can provide notifications via ZeroMQ. To compile ZMQ support, install the following dependency and pass `-DWITH_ZMQ=ON` when configuring.
```bash
pkg install libzmq4
```
diff --git a/doc/build-netbsd.md b/doc/build-netbsd.md
index c0c2d065..f50baab4 100644
--- a/doc/build-netbsd.md
+++ b/doc/build-netbsd.md
@@ -82,7 +82,7 @@ Otherwise, if you don't need QR encoding support, use the `-DWITH_QRENCODE=OFF`
#### Notifications
###### ZeroMQ
-Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
+Bitcoin Core can provide notifications via ZeroMQ. To compile ZMQ support, install the following dependency and pass `-DWITH_ZMQ=ON` when configuring.
```bash
pkgin install zeromq
```
diff --git a/doc/build-openbsd.md b/doc/build-openbsd.md
index 4ea58795..5edc56f0 100644
--- a/doc/build-openbsd.md
+++ b/doc/build-openbsd.md
@@ -64,7 +64,7 @@ Otherwise, if you don't need QR encoding support, use the `-DWITH_QRENCODE=OFF`
#### Notifications
###### ZeroMQ
-Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
+Bitcoin Core can provide notifications via ZeroMQ. To compile ZMQ support, install the following dependency and pass `-DWITH_ZMQ=ON` when configuring.
```bash
pkg_add zeromq
```
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.