Unverified Commit ea104940 authored by Jonathan Brouwer's avatar Jonathan Brouwer
Browse files

Correct the name of the `pkgconf` package on some distros

parent 5095d7da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.

+4 −4
Original line number Diff line number Diff line
@@ -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:

+3 −3
Original line number Diff line number Diff line
@@ -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