Skip to content

Commit fb77310

Browse files
committed
Merge #13295: docs: Update OpenBSD build instructions for OpenBSD 6.3
1680b8b docs: Update OpenBSD build instructions for OpenBSD 6.3 (practicalswift) Pull request description: Update OpenBSD build instructions for OpenBSD 6.3. Tree-SHA512: cafed10e053351bf2c7cf802e011acd557e9a55b55b961a192e5d69ee6681f12ddbd936ab4d18fc39baaa992a942f04b087a827d98a6b157e5481a1a29dacb62
2 parents f5a7733 + 1680b8b commit fb77310

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

doc/build-openbsd.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OpenBSD build guide
22
======================
3-
(updated for OpenBSD 6.2)
3+
(updated for OpenBSD 6.3)
44

55
This guide describes how to build bitcoind and command-line utilities on OpenBSD.
66

@@ -12,11 +12,10 @@ Preparation
1212
Run the following as root to install the base dependencies for building:
1313

1414
```bash
15-
pkg_add git gmake libevent libtool
15+
pkg_add git gmake libevent libtool boost
1616
pkg_add autoconf # (select highest version, e.g. 2.69)
1717
pkg_add automake # (select highest version, e.g. 1.15)
1818
pkg_add python # (select highest version, e.g. 3.6)
19-
pkg_add boost
2019

2120
git clone https://github.com/bitcoin/bitcoin.git
2221
```
@@ -55,8 +54,15 @@ export BDB_PREFIX="$PWD/db4"
5554

5655
Preparation:
5756
```bash
58-
export AUTOCONF_VERSION=2.69 # replace this with the autoconf version that you installed
59-
export AUTOMAKE_VERSION=1.15 # replace this with the automake version that you installed
57+
58+
# Replace this with the autoconf version that you installed. Include only
59+
# the major and minor parts of the version: use "2.69" for "autoconf-2.69p2".
60+
export AUTOCONF_VERSION=2.69
61+
62+
# Replace this with the automake version that you installed. Include only
63+
# the major and minor parts of the version: use "1.15" for "automake-1.15.1".
64+
export AUTOMAKE_VERSION=1.15
65+
6066
./autogen.sh
6167
```
6268
Make sure `BDB_PREFIX` is set to the appropriate path from the above steps.

0 commit comments

Comments
 (0)