Skip to content

Commit 7085728

Browse files
committed
doc: there is no libboost-base-dev, add missing sudo
- There is no libboost-base-dev, no idea how I ended up with this - Without that, installing separate boost packages works fine on both Ubuntu 14.04 and Debian 7 (tested on VMs), this did not use to be the case, AFAIK. - Add a missing 'sudo' for consistency - Need `bsdmainutils` for `hexdump` (for the tests)
1 parent 4ee149a commit 7085728

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/build-unix.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ Dependency Build Instructions: Ubuntu & Debian
6161
----------------------------------------------
6262
Build requirements:
6363

64-
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev
64+
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev bsdmainutils
6565

66-
On Ubuntu 15.10+ there are generic names for the individual boost development
67-
packages, so the following can be used to only install necessary parts of
68-
boost:
66+
On at least Ubuntu 14.04+ and Debian 7+ there are generic names for the
67+
individual boost development packages, so the following can be used to only
68+
install necessary parts of boost:
6969

70-
apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libboost-base-dev
70+
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
7171

72-
For Ubuntu before 15.10, or Debian 7 and later libboost-all-dev has to be installed:
72+
If that doesn't work, you can install all boost development packages with:
7373

7474
sudo apt-get install libboost-all-dev
7575

0 commit comments

Comments
 (0)