Skip to content

Commit

Permalink
Add missing libressl382 config to openssl/build.rs
Browse files Browse the repository at this point in the history
In 04ffe96 and ae74dec I added conditionals on libressl382 but
missed the build script.
  • Loading branch information
botovq committed Oct 21, 2023
1 parent 7ab71da commit fb57873
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions openssl/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ fn main() {
if version >= 0x3_08_00_00_0 {
println!("cargo:rustc-cfg=libressl380");
}
if version >= 0x3_08_02_00_0 {
println!("cargo:rustc-cfg=libressl382");
}
}

if let Ok(vars) = env::var("DEP_OPENSSL_CONF") {
Expand Down

0 comments on commit fb57873

Please sign in to comment.