summaryrefslogtreecommitdiff
path: root/openssl-sys
diff options
context:
space:
mode:
authorCharlie Li <git@vishwin.info>2020-11-25 11:47:39 -0500
committerCharlie Li <git@vishwin.info>2020-12-05 23:11:45 -0500
commit904181671952e4022175d988240fb4e0ab06e023 (patch)
treea7de52d9a7d6f28890ce6b09a58ab1e7189fcb2e /openssl-sys
parent60d9b75c71a37494032ac0d11d686a45cad3073b (diff)
downloadrust-openssl-904181671952e4022175d988240fb4e0ab06e023.zip
Support LibreSSL 3.3.0
Diffstat (limited to 'openssl-sys')
-rw-r--r--openssl-sys/build/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs
index ad004e09..4e75fd0a 100644
--- a/openssl-sys/build/main.rs
+++ b/openssl-sys/build/main.rs
@@ -224,6 +224,7 @@ See rust-openssl README for more information:
(3, 2, 0) => ('3', '2', '0'),
(3, 2, 1) => ('3', '2', '1'),
(3, 2, _) => ('3', '2', 'x'),
+ (3, 3, 0) => ('3', '3', '0'),
_ => version_error(),
};
@@ -264,7 +265,7 @@ fn version_error() -> ! {
"
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
-through 3.2.x, but a different version of OpenSSL was found. The build is now aborting
+through 3.3.0, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"