From f218ecf0e87df2087412e3ab73a63b38d3f5e985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Wed, 15 Dec 2021 14:20:28 +0100 Subject: [PATCH] openssl: set ossl110h cfg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this is used as conditional guard for disabling renegotiation via SslOptions. Fixes: 9189b6732646e2af9d0847ef4230aec1d1e61730 Signed-off-by: Fabian Grünbichler --- openssl/build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openssl/build.rs b/openssl/build.rs index d90ebc17dc..c165b7e983 100644 --- a/openssl/build.rs +++ b/openssl/build.rs @@ -32,6 +32,9 @@ fn main() { if version >= 0x1_01_00_07_0 { println!("cargo:rustc-cfg=ossl110g"); } + if version >= 0x1_01_00_08_0 { + println!("cargo:rustc-cfg=ossl110h"); + } if version >= 0x1_01_01_00_0 { println!("cargo:rustc-cfg=ossl111"); }