ports/security/rust-openssl-tests/patches/patch-openssl-sys_build_main_rs

15 lines
497 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
The LibreSSL version in -current isn't explicitly supported.
Index: openssl-sys/build/main.rs
--- openssl-sys/build/main.rs.orig
+++ openssl-sys/build/main.rs
2023-09-08 05:21:37 +00:00
@@ -283,7 +283,7 @@ See rust-openssl documentation for more information:
2023-08-16 22:26:55 +00:00
(3, 7, 1) => ('3', '7', '1'),
(3, 7, _) => ('3', '7', 'x'),
2023-09-08 05:21:37 +00:00
(3, 8, 0) => ('3', '8', '0'),
- (3, 8, 1) => ('3', '8', '1'),
+ (3, 8, _) => ('3', '8', 'x'),
2023-08-16 22:26:55 +00:00
_ => version_error(),
};