diff --git a/openssl-sys/build/find_normal.rs b/openssl-sys/build/find_normal.rs index ce278f5c7..1e910a0ee 100644 --- a/openssl-sys/build/find_normal.rs +++ b/openssl-sys/build/find_normal.rs @@ -165,7 +165,7 @@ installing `pkg-config`. It looks like you're compiling for MinGW but you may not have either OpenSSL or pkg-config installed. You can install these two dependencies with: -pacman -S openssl-devel pkg-config +pacman -S openssl-devel pkgconf and try building this crate again. diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs index be4c21436..528d5a05f 100644 --- a/openssl-sys/build/main.rs +++ b/openssl-sys/build/main.rs @@ -271,13 +271,13 @@ pointing to your OpenSSL installation or installing OpenSSL headers package specific to your distribution: # On Ubuntu - sudo apt-get install libssl-dev + sudo apt-get install pkg-config libssl-dev # On Arch Linux - sudo pacman -S openssl + sudo pacman -S pkgconf openssl # On Fedora - sudo dnf install openssl-devel + sudo dnf install pkgconf perl-FindBin perl-IPC-Cmd openssl-devel # On Alpine Linux - apk add openssl-dev + apk add pkgconf openssl-dev See rust-openssl documentation for more information: diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs index ed0077e37..555eda972 100644 --- a/openssl/src/lib.rs +++ b/openssl/src/lib.rs @@ -39,16 +39,16 @@ //! $ sudo pkgin install openssl //! //! # Arch Linux -//! $ sudo pacman -S pkg-config openssl +//! $ sudo pacman -S pkgconf openssl //! //! # Debian and Ubuntu //! $ sudo apt-get install pkg-config libssl-dev //! //! # Fedora -//! $ sudo dnf install pkg-config perl-FindBin perl-IPC-Cmd openssl-devel +//! $ sudo dnf install pkgconf perl-FindBin perl-IPC-Cmd openssl-devel //! //! # Alpine Linux -//! $ apk add pkgconfig openssl-dev +//! $ apk add pkgconf openssl-dev //! //! # openSUSE //! $ sudo zypper in libopenssl-devel