From a7a37c3ac630d207859c8768f77935aeacbc485d Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Tue, 1 Jul 2025 14:57:57 +0200 Subject: [PATCH] crypto: fix inclusion of OPENSSL_IS_BORINGSSL define MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/58845 Reviewed-By: James M Snell Reviewed-By: Juan José Arboleda Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca Reviewed-By: Ethan Arrowood Reviewed-By: Richard Lau --- src/node_config.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/node_config.cc b/src/node_config.cc index 6032bbd10f..7245d9130d 100644 --- a/src/node_config.cc +++ b/src/node_config.cc @@ -7,6 +7,10 @@ #include "node_options.h" #include "util-inl.h" +#if HAVE_OPENSSL +#include "ncrypto.h" // Ensure OPENSSL_IS_BORINGSSL is defined if applicable +#endif + namespace node { using v8::Context;