summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharlie Li <git@vishwin.info>2020-10-20 08:10:40 -0400
committerCharlie Li <git@vishwin.info>2020-12-05 23:11:45 -0500
commitabed16684b24b1b9b448c0619b15e592c929ff99 (patch)
tree16c2a506e1ed0e1091d5bf9422d41f1a7aa3bca3
parent53b34f877afff8610944d5932661e104af54d747 (diff)
downloadrust-openssl-abed16684b24b1b9b448c0619b15e592c929ff99.zip
Support LibreSSL 3.2.2
3.2.2 is the first stable release.
-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 e7411cf0..ad004e09 100644
--- a/openssl-sys/build/main.rs
+++ b/openssl-sys/build/main.rs
@@ -223,6 +223,7 @@ See rust-openssl README for more information:
(3, 1, _) => ('3', '1', 'x'),
(3, 2, 0) => ('3', '2', '0'),
(3, 2, 1) => ('3', '2', '1'),
+ (3, 2, _) => ('3', '2', 'x'),
_ => version_error(),
};
@@ -263,7 +264,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.1, but a different version of OpenSSL was found. The build is now aborting
+through 3.2.x, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"