diff options
author | Theo Buehler <tb@openbsd.org> | 2022-12-20 01:03:40 +0100 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2022-12-20 01:03:40 +0100 |
commit | 95ca0d14f7e80702b52c7eb1751d09db2fc869d0 (patch) | |
tree | 2fb7a37e5e29a6eb61b78d7e69b2d2cb1d64abef /.github | |
parent | 320501da40a6b43965775a68b5019d86a146e21a (diff) | |
download | portable-95ca0d14f7e80702b52c7eb1751d09db2fc869d0.tar.gz portable-95ca0d14f7e80702b52c7eb1751d09db2fc869d0.tar.bz2 portable-95ca0d14f7e80702b52c7eb1751d09db2fc869d0.zip |
Update rust-openssl patch
Diffstat (limited to '.github')
-rw-r--r-- | .github/rust-openssl.patch | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/.github/rust-openssl.patch b/.github/rust-openssl.patch index 56a3941..9ff4ea0 100644 --- a/.github/rust-openssl.patch +++ b/.github/rust-openssl.patch | |||
@@ -1,14 +1,13 @@ | |||
1 | diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs | 1 | diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs |
2 | index 71b36c23..644a318d 100644 | 2 | index cdea3eb4..b16ebecf 100644 |
3 | --- a/openssl-sys/build/main.rs | 3 | --- a/openssl-sys/build/main.rs |
4 | +++ b/openssl-sys/build/main.rs | 4 | +++ b/openssl-sys/build/main.rs |
5 | @@ -281,8 +281,7 @@ See rust-openssl documentation for more information: | 5 | @@ -282,7 +282,7 @@ See rust-openssl documentation for more information: |
6 | (3, 4, _) => ('3', '4', 'x'), | ||
7 | (3, 5, _) => ('3', '5', 'x'), | 6 | (3, 5, _) => ('3', '5', 'x'), |
8 | (3, 6, 0) => ('3', '6', '0'), | 7 | (3, 6, 0) => ('3', '6', '0'), |
9 | - (3, 6, _) => ('3', '6', 'x'), | 8 | (3, 6, _) => ('3', '6', 'x'), |
10 | - _ => version_error(), | 9 | - (3, 7, 0) => ('3', '7', '0'), |
11 | + _ => ('3', '6', 'x'), | 10 | + (3, 7, _) => ('3', '7', 'x'), |
11 | _ => version_error(), | ||
12 | }; | 12 | }; |
13 | 13 | ||
14 | println!("cargo:libressl=true"); | ||