From 37f24f65573ab66d5e06a254a70b2aad4de5b418 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Mon, 28 Feb 2022 01:34:35 +0100 Subject: [PATCH] Add Alpine Linux instructions Signed-off-by: William Desportes --- openssl-sys/build/main.rs | 2 ++ openssl/src/lib.rs | 3 +++ 2 files changed, 5 insertions(+) diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs index f1639ff56..2036dcff4 100644 --- a/openssl-sys/build/main.rs +++ b/openssl-sys/build/main.rs @@ -187,6 +187,8 @@ specific to your distribution: sudo pacman -S openssl # On Fedora sudo dnf install openssl-devel + # On Alpine Linux + apk add openssl-dev See rust-openssl README for more information: diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs index 4750963a0..71221adec 100644 --- a/openssl/src/lib.rs +++ b/openssl/src/lib.rs @@ -45,6 +45,9 @@ //! //! # Fedora //! $ sudo dnf install pkg-config openssl-devel +//! +//! # Alpine Linux +//! $ apk add pkgconfig openssl-dev //! ``` //! //! ## Manual -- GitLab