From 13f784e26a196bd0cbeeaf163bb950fe1e397900 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 4 Apr 2026 16:59:08 +0200 Subject: [PATCH] Fix building if there is no openssl/engine.h --- src/openssl/crypto.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openssl/crypto.c b/src/openssl/crypto.c index 3960c3e8..44c7be57 100644 --- a/src/openssl/crypto.c +++ b/src/openssl/crypto.c @@ -20,7 +20,9 @@ #include "../system.h" #include +#if OPENSSL_VERSION_MAJOR < 3 #include +#endif #include "../crypto.h" -- 2.47.3