aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2022-11-03 02:43:20 +0100
committerTheo Buehler <tb@openbsd.org>2022-11-03 02:43:20 +0100
commit6e1d17c2746defbf4bf9b2c72983f13a7277bab2 (patch)
tree5090cb7394e65aaf483f37b719d8ace46bf2f539
parent0c8231e298f6d0384591a5e1b88564be7d37772e (diff)
downloadportable-6e1d17c2746defbf4bf9b2c72983f13a7277bab2.tar.gz
portable-6e1d17c2746defbf4bf9b2c72983f13a7277bab2.tar.bz2
portable-6e1d17c2746defbf4bf9b2c72983f13a7277bab2.zip
rebase rust-openssl patch
-rw-r--r--.github/rust-openssl.patch5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/rust-openssl.patch b/.github/rust-openssl.patch
index 5821c72..56a3941 100644
--- a/.github/rust-openssl.patch
+++ b/.github/rust-openssl.patch
@@ -1,11 +1,12 @@
1diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs 1diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs
2index 2ca53c97..56a60161 100644 2index 71b36c23..644a318d 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,7 +281,7 @@ See rust-openssl documentation for more information: 5@@ -281,8 +281,7 @@ See rust-openssl documentation for more information:
6 (3, 4, _) => ('3', '4', 'x'), 6 (3, 4, _) => ('3', '4', 'x'),
7 (3, 5, _) => ('3', '5', 'x'), 7 (3, 5, _) => ('3', '5', 'x'),
8 (3, 6, 0) => ('3', '6', '0'), 8 (3, 6, 0) => ('3', '6', '0'),
9- (3, 6, _) => ('3', '6', 'x'),
9- _ => version_error(), 10- _ => version_error(),
10+ _ => ('3', '6', 'x'), 11+ _ => ('3', '6', 'x'),
11 }; 12 };