aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAndres Nötzli <andres.noetzli@gmail.com>2016-02-04 05:04:29 +0800
committerAndres Nötzli <andres.noetzli@gmail.com>2016-02-04 05:04:29 +0800
commit1d9f8c26f5090062d328295b8b1bbc49e35435ff (patch)
tree6b12109fae47b9fe81aac3b2d96b4b8af93c549b /docs
parentf311a6123d2fd9881b68266fe6f70ed9a96aba09 (diff)
downloaddexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar
dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar.gz
dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar.bz2
dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar.lz
dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar.xz
dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar.zst
dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.zip
[Documentation] Add details on libjsonrpccpp-dev
Add explanation to the documentation that the package name changes from `libjson-rpc-cpp-dev` to `libjsonrpccpp-dev` and is supplied by the universe repository instead of the Ethereum PPA.
Diffstat (limited to 'docs')
-rw-r--r--docs/installing-solidity.rst10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst
index 08c6cfd8..aa5890e8 100644
--- a/docs/installing-solidity.rst
+++ b/docs/installing-solidity.rst
@@ -98,11 +98,19 @@ Now add all the rest:
sudo apt-get -y update
sudo apt-get -y upgrade
-Use the following command to add the develop packages:
+For Ubuntu 15.04 (Vivid Vervet) or older, use the following command to add the develop packages:
+
+.. code-block:: bash
+
+ sudo apt-get -y install build-essential git cmake libboost-all-dev libgmp-dev libleveldb-dev libminiupnpc-dev libreadline-dev libncurses5-dev libcurl4-openssl-dev libcryptopp-dev libjson-rpc-cpp-dev libmicrohttpd-dev libjsoncpp-dev libedit-dev libz-dev
+
+For Ubuntu 15.10 (Wily Werewolf) or newer, use the following command instead:
.. code-block:: bash
sudo apt-get -y install build-essential git cmake libboost-all-dev libgmp-dev libleveldb-dev libminiupnpc-dev libreadline-dev libncurses5-dev libcurl4-openssl-dev libcryptopp-dev libjsonrpccpp-dev libmicrohttpd-dev libjsoncpp-dev libedit-dev libz-dev
+
+The reason for the change is that `libjsonrpccpp-dev` is available in the universe repository for newer versions of Ubuntu.
Building
--------