From 0b13e67bf588e25d19eeb3114eea0939cdce3e4c Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 15 Nov 2024 19:17:34 -0500 Subject: [PATCH] Set no-module to fix legacy provider --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index c1c64f65..79aff11a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -197,6 +197,7 @@ impl Build { configure // No shared objects, we just want static libraries .arg("no-shared") + .arg("no-module") // Should be off by default on OpenSSL 1.1.0, but let's be extra sure .arg("no-ssl3") // No need to build tests, we won't run them anyway