Skip to content
Snippets Groups Projects
Commit 95a26604 authored by Steven Fackler's avatar Steven Fackler Committed by GitHub
Browse files

Merge pull request #544 from tomusdrw/master

Improving missing OpenSSL message on Linux
parents cfb2539e d9e3d6ea
Branches
Tags
No related merge requests found
...@@ -184,9 +184,20 @@ Used pkg-config to discover the OpenSSL installation, but pkg-config did not ...@@ -184,9 +184,20 @@ Used pkg-config to discover the OpenSSL installation, but pkg-config did not
return any include paths for the installation. This crate needs to take a peek return any include paths for the installation. This crate needs to take a peek
at the header files so it cannot proceed unless they're found. at the header files so it cannot proceed unless they're found.
You can try fixing this by setting the `OPENSSL_DIR` environment variable You can try fixing this setting the `OPENSSL_DIR` environment variable
pointing to your OpenSSL installation. pointing to your OpenSSL installation or installing OpenSSL headers package
specific to your distribution:
# On Ubuntu
sudo apt-get install libssl-dev
# On Arch Linux
sudo pacman -S openssl
# On Fedora
sudo dnf install openssl-devel
See rust-openssl README for more information:
https://github.com/sfackler/rust-openssl#linux
"); ");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment