From 72b74045c41c9683ea3058b746065536a84b40e4 Mon Sep 17 00:00:00 2001 From: Charlie Li Date: Mon, 20 Sep 2021 22:45:17 -0400 Subject: [PATCH] Add cfgs for LibreSSL 3.4.0 --- openssl-sys/build/cfgs.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openssl-sys/build/cfgs.rs b/openssl-sys/build/cfgs.rs index cc13b2802..c1d9ddd5a 100644 --- a/openssl-sys/build/cfgs.rs +++ b/openssl-sys/build/cfgs.rs @@ -34,6 +34,9 @@ pub fn get(openssl_version: Option, libressl_version: Option) -> Vec<& if libressl_version >= 0x3_03_02_00_0 { cfgs.push("libressl332"); } + if libressl_version >= 0x3_04_00_00_0 { + cfgs.push("libressl340"); + } if libressl_version >= 0x3_05_00_00_0 { cfgs.push("libressl350"); } -- GitLab