aboutsummaryrefslogtreecommitdiff
path: root/.github/rust-openssl.patch
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2023-03-26 20:22:50 -0500
committerBrent Cook <busterb@gmail.com>2023-03-26 20:22:50 -0500
commitd4b2f72414f08b031ddd5042f213dbc440b59e43 (patch)
treee8cc3c9235647597b630a8e240bbf7330dd0b71a /.github/rust-openssl.patch
parentf91e5ee3c7034904471fc422d311183f8e715933 (diff)
parent6501696dd7669b3d20d69beffc508c46f0a807da (diff)
downloadportable-d4b2f72414f08b031ddd5042f213dbc440b59e43.tar.gz
portable-d4b2f72414f08b031ddd5042f213dbc440b59e43.tar.bz2
portable-d4b2f72414f08b031ddd5042f213dbc440b59e43.zip
Land #829, fix elf mips / mips64 builds
Diffstat (limited to '.github/rust-openssl.patch')
-rw-r--r--.github/rust-openssl.patch9
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/rust-openssl.patch b/.github/rust-openssl.patch
index 9ff4ea0..fac4ae6 100644
--- a/.github/rust-openssl.patch
+++ b/.github/rust-openssl.patch
@@ -1,12 +1,11 @@
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 cdea3eb4..b16ebecf 100644 2index 3357518f..f55b5def 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@@ -282,7 +282,7 @@ See rust-openssl documentation for more information: 5@@ -295,6 +295,7 @@ See rust-openssl documentation for more information:
6 (3, 5, _) => ('3', '5', 'x'),
7 (3, 6, 0) => ('3', '6', '0'),
8 (3, 6, _) => ('3', '6', 'x'), 6 (3, 6, _) => ('3', '6', 'x'),
9- (3, 7, 0) => ('3', '7', '0'), 7 (3, 7, 0) => ('3', '7', '0'),
8 (3, 7, 1) => ('3', '7', '1'),
10+ (3, 7, _) => ('3', '7', 'x'), 9+ (3, 7, _) => ('3', '7', 'x'),
11 _ => version_error(), 10 _ => version_error(),
12 }; 11 };