mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Merge #13295: docs: Update OpenBSD build instructions for OpenBSD 6.3
1680b8bf03
docs: Update OpenBSD build instructions for OpenBSD 6.3 (practicalswift)
Pull request description:
Update OpenBSD build instructions for OpenBSD 6.3.
Tree-SHA512: cafed10e053351bf2c7cf802e011acd557e9a55b55b961a192e5d69ee6681f12ddbd936ab4d18fc39baaa992a942f04b087a827d98a6b157e5481a1a29dacb62
This commit is contained in:
commit
fb7731089e
1 changed files with 11 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
OpenBSD build guide
|
OpenBSD build guide
|
||||||
======================
|
======================
|
||||||
(updated for OpenBSD 6.2)
|
(updated for OpenBSD 6.3)
|
||||||
|
|
||||||
This guide describes how to build bitcoind and command-line utilities on OpenBSD.
|
This guide describes how to build bitcoind and command-line utilities on OpenBSD.
|
||||||
|
|
||||||
|
@ -12,11 +12,10 @@ Preparation
|
||||||
Run the following as root to install the base dependencies for building:
|
Run the following as root to install the base dependencies for building:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pkg_add git gmake libevent libtool
|
pkg_add git gmake libevent libtool boost
|
||||||
pkg_add autoconf # (select highest version, e.g. 2.69)
|
pkg_add autoconf # (select highest version, e.g. 2.69)
|
||||||
pkg_add automake # (select highest version, e.g. 1.15)
|
pkg_add automake # (select highest version, e.g. 1.15)
|
||||||
pkg_add python # (select highest version, e.g. 3.6)
|
pkg_add python # (select highest version, e.g. 3.6)
|
||||||
pkg_add boost
|
|
||||||
|
|
||||||
git clone https://github.com/bitcoin/bitcoin.git
|
git clone https://github.com/bitcoin/bitcoin.git
|
||||||
```
|
```
|
||||||
|
@ -55,8 +54,15 @@ export BDB_PREFIX="$PWD/db4"
|
||||||
|
|
||||||
Preparation:
|
Preparation:
|
||||||
```bash
|
```bash
|
||||||
export AUTOCONF_VERSION=2.69 # replace this with the autoconf version that you installed
|
|
||||||
export AUTOMAKE_VERSION=1.15 # replace this with the automake version that you installed
|
# Replace this with the autoconf version that you installed. Include only
|
||||||
|
# the major and minor parts of the version: use "2.69" for "autoconf-2.69p2".
|
||||||
|
export AUTOCONF_VERSION=2.69
|
||||||
|
|
||||||
|
# Replace this with the automake version that you installed. Include only
|
||||||
|
# the major and minor parts of the version: use "1.15" for "automake-1.15.1".
|
||||||
|
export AUTOMAKE_VERSION=1.15
|
||||||
|
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
```
|
```
|
||||||
Make sure `BDB_PREFIX` is set to the appropriate path from the above steps.
|
Make sure `BDB_PREFIX` is set to the appropriate path from the above steps.
|
||||||
|
|
Loading…
Reference in a new issue