Commit fb578735 authored by Theo Buehler's avatar Theo Buehler
Browse files

Add missing libressl382 config to openssl/build.rs

In 04ffe960 and ae74dec4 I added conditionals on libressl382 but
missed the build script.
parent 7ab71da1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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") {