diff --git a/systest/build.rs b/systest/build.rs index 23a629629b0f9a8d825019e4b5db60408971b105..457d372bab50afbbb3905b16d9f24eecfe8ac5c1 100644 --- a/systest/build.rs +++ b/systest/build.rs @@ -28,6 +28,9 @@ fn main() { is_libressl = true; } else if let Ok(version) = env::var("DEP_OPENSSL_VERSION") { cfg.cfg(&format!("ossl{}", version), None); + if version == "111" { + cfg.cfg("ossl110", None); + } } if let (Ok(version), Ok(patch)) = ( env::var("DEP_OPENSSL_VERSION"),