From 4f93524b64cac07802334918fe9a29bf535b5f04 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Sat, 27 May 2023 23:49:56 -0600 Subject: Update patch for rust-openssl version check --- .github/rust-openssl.patch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/rust-openssl.patch b/.github/rust-openssl.patch index ab955be..f623720 100644 --- a/.github/rust-openssl.patch +++ b/.github/rust-openssl.patch @@ -1,13 +1,13 @@ diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs -index ba149c17..5274dc44 100644 +index 1762068d..9e7295b0 100644 --- a/openssl-sys/build/main.rs +++ b/openssl-sys/build/main.rs @@ -285,7 +285,7 @@ See rust-openssl documentation for more information: (3, 7, 0) => ('3', '7', '0'), (3, 7, 1) => ('3', '7', '1'), (3, 7, _) => ('3', '7', 'x'), -- _ => version_error(), -+ _ => ('3', '7', 'x'), +- (3, 8, 0) => ('3', '8', '0'), ++ (3, 8, _) => ('3', '8', '0'), + _ => version_error(), }; - println!("cargo:libressl=true"); -- cgit v1.2.3-55-g6feb