From 84d8c52662545b33c0d02c8ac02ae694950ad9d4 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Tue, 30 Dec 2025 19:45:14 +0000 Subject: [PATCH] doc: Update OpenBSD Build Guide --- doc/build-openbsd.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/build-openbsd.md b/doc/build-openbsd.md index fdeafe88d76..4ea58795a05 100644 --- a/doc/build-openbsd.md +++ b/doc/build-openbsd.md @@ -1,6 +1,6 @@ # OpenBSD Build Guide -**Updated for OpenBSD [7.6](https://www.openbsd.org/76.html)** +**Updated for OpenBSD [7.8](https://www.openbsd.org/78.html)** This guide describes how to build bitcoind, command-line utilities, and GUI on OpenBSD. @@ -21,8 +21,11 @@ pkg_add sqlite3 To build Bitcoin Core without the wallet, use `-DENABLE_WALLET=OFF`. -Cap'n Proto is needed for IPC functionality (see [multiprocess.md](multiprocess.md)) -and can be built from source: https://capnproto.org/install.html +Cap'n Proto is needed for IPC functionality (see [multiprocess.md](multiprocess.md)): + +```bash +pkg_add capnproto +``` Compile with `-DENABLE_IPC=OFF` if you do not need IPC functionality.