From f311a6123d2fd9881b68266fe6f70ed9a96aba09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andres=20N=C3=B6tzli?= Date: Mon, 1 Feb 2016 11:43:26 -0800 Subject: [Documentation] Include correct dev package The Ubuntu part of the installation guide mentions `libjson-rpc-cpp-dev`. However, the correct name seems to be `libjsonrpccpp-dev`. --- docs/installing-solidity.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst index 25690eca..08c6cfd8 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -102,7 +102,7 @@ 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 + 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 Building -------- -- cgit v1.2.3 From 1d9f8c26f5090062d328295b8b1bbc49e35435ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andres=20N=C3=B6tzli?= Date: Wed, 3 Feb 2016 13:04:29 -0800 Subject: [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. --- docs/installing-solidity.rst | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'docs') 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 -------- -- cgit v1.2.3