diff options
author | Theo Buehler <tb@openbsd.org> | 2023-04-09 10:47:17 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-04-09 10:47:17 -0600 |
commit | f79a103b256764a3f8e2900cd3bc1ff7dbe54e8b (patch) | |
tree | c3acb8b202c462b04a332dc709ad958f2227a497 | |
parent | 7fa835f0be9c814e378be6b016d8decf8e08cb4c (diff) | |
download | portable-f79a103b256764a3f8e2900cd3bc1ff7dbe54e8b.tar.gz portable-f79a103b256764a3f8e2900cd3bc1ff7dbe54e8b.tar.bz2 portable-f79a103b256764a3f8e2900cd3bc1ff7dbe54e8b.zip |
Update rust-openssl patch
-rw-r--r-- | .github/rust-openssl.patch | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/rust-openssl.patch b/.github/rust-openssl.patch index fac4ae6..ab955be 100644 --- a/.github/rust-openssl.patch +++ b/.github/rust-openssl.patch | |||
@@ -1,12 +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 3357518f..f55b5def 100644 | 2 | index ba149c17..5274dc44 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 | @@ -295,6 +295,7 @@ See rust-openssl documentation for more information: | 5 | @@ -285,7 +285,7 @@ See rust-openssl documentation for more information: |
6 | (3, 6, _) => ('3', '6', 'x'), | ||
7 | (3, 7, 0) => ('3', '7', '0'), | 6 | (3, 7, 0) => ('3', '7', '0'), |
8 | (3, 7, 1) => ('3', '7', '1'), | 7 | (3, 7, 1) => ('3', '7', '1'), |
9 | + (3, 7, _) => ('3', '7', 'x'), | 8 | (3, 7, _) => ('3', '7', 'x'), |
10 | _ => version_error(), | 9 | - _ => version_error(), |
10 | + _ => ('3', '7', 'x'), | ||
11 | }; | 11 | }; |
12 | 12 | ||
13 | println!("cargo:libressl=true"); | ||