File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
OpenBSD build guide
2
2
======================
3
- (updated for OpenBSD 6.2 )
3
+ (updated for OpenBSD 6.3 )
4
4
5
5
This guide describes how to build bitcoind and command-line utilities on OpenBSD.
6
6
@@ -12,11 +12,10 @@ Preparation
12
12
Run the following as root to install the base dependencies for building:
13
13
14
14
``` bash
15
- pkg_add git gmake libevent libtool
15
+ pkg_add git gmake libevent libtool boost
16
16
pkg_add autoconf # (select highest version, e.g. 2.69)
17
17
pkg_add automake # (select highest version, e.g. 1.15)
18
18
pkg_add python # (select highest version, e.g. 3.6)
19
- pkg_add boost
20
19
21
20
git clone https://github.com/bitcoin/bitcoin.git
22
21
```
@@ -55,8 +54,15 @@ export BDB_PREFIX="$PWD/db4"
55
54
56
55
Preparation:
57
56
``` 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
+
60
66
./autogen.sh
61
67
```
62
68
Make sure ` BDB_PREFIX ` is set to the appropriate path from the above steps.
You can’t perform that action at this time.
0 commit comments