repo/extra/rust/patches/libressl-3.1.X.patch

18 lines
695 B
Diff
Raw Normal View History

2020-05-17 14:44:03 +00:00
diff --git a/vendor/openssl-sys/build/main.rs b/vendor/openssl-sys/build/main.rs
index 162e11a66..9f3544313 100644
--- a/vendor/openssl-sys/build/main.rs
+++ b/vendor/openssl-sys/build/main.rs
2020-06-02 20:04:36 +00:00
@@ -204,6 +204,12 @@ See rust-openssl README for more information:
2020-05-17 14:44:03 +00:00
(3, 0, 0) => ('3', '0', '0'),
(3, 0, 1) => ('3', '0', '1'),
(3, 0, _) => ('3', '0', 'x'),
+ (3, 1, 0) => ('3', '1', '0'),
+ (3, 1, 1) => ('3', '1', '0'),
+ (3, 1, _) => ('3', '1', 'x'),
2020-06-02 20:04:36 +00:00
+ (3, 2, 0) => ('3', '2', '0'),
+ (3, 2, 1) => ('3', '2', '0'),
+ (3, 2, _) => ('3', '2', 'x'),
2020-05-17 14:44:03 +00:00
_ => version_error(),
};
2020-06-02 20:04:36 +00:00