From 63fe5542e7f6c4a2406eb87137e8233794965256 Mon Sep 17 00:00:00 2001 From: Geoffry Song Date: Mon, 9 Nov 2020 02:31:31 +0000 Subject: [PATCH] Remove mention of OpenSSL from documentation (#1844) If I'm not mistaken, openssl is no longer a dependency of lighthouse, so it can no longer cause build issues. --- book/src/installation-source.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/book/src/installation-source.md b/book/src/installation-source.md index 1f05c3e8d..285503ee3 100644 --- a/book/src/installation-source.md +++ b/book/src/installation-source.md @@ -50,14 +50,14 @@ Several dependencies may be required to compile Lighthouse. The following packages may be required in addition a base Ubuntu Server installation: ```bash -sudo apt install -y git gcc g++ make cmake pkg-config libssl-dev +sudo apt install -y git gcc g++ make cmake pkg-config ``` #### macOS You will need `cmake`. You can install via homebrew: - brew install openssl cmake + brew install cmake ### Command is not found @@ -71,12 +71,4 @@ See ["Configuring the `PATH` environment variable" Make sure you are running the latest version of Rust. If you have installed Rust using rustup, simply type `$ rustup update`. -### OpenSSL - -If you get a build failure relating to OpenSSL, try installing `openssl-dev` or -`libssl-dev` using your OS package manager. - -- Ubuntu: `$ apt-get install libssl-dev`. -- Amazon Linux: `$ yum install openssl-devel`. - [WSL]: https://docs.microsoft.com/en-us/windows/wsl/about