15 lines
467 B
Text
15 lines
467 B
Text
https://github.com/sfackler/rust-openssl/pull/2124
|
|
|
|
Index: vendor/openssl/build.rs
|
|
--- vendor/openssl/build.rs.orig
|
|
+++ vendor/openssl/build.rs
|
|
@@ -81,6 +81,9 @@ fn main() {
|
|
for var in vars.split(',') {
|
|
println!("cargo:rustc-cfg=osslconf=\"{}\"", var);
|
|
}
|
|
+ if version >= 0x3_09_00_00_0 {
|
|
+ println!("cargo:rustc-cfg=libressl390");
|
|
+ }
|
|
}
|
|
|
|
if let Ok(version) = env::var("DEP_OPENSSL_VERSION_NUMBER") {
|