From 5881f94dd9e14ab54119083e93bd9f523f2ed0e8 Mon Sep 17 00:00:00 2001 From: pasta Date: Mon, 10 Aug 2026 21:22:01 -0500 Subject: [PATCH] perf(crypto): enable configured SHA256 acceleration --- src/crypto/sha256.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/crypto/sha256.cpp b/src/crypto/sha256.cpp index c99b5697366d..d8ee2659111a 100644 --- a/src/crypto/sha256.cpp +++ b/src/crypto/sha256.cpp @@ -2,6 +2,10 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. +#if defined(HAVE_CONFIG_H) +#include +#endif + #include #include