crypto: fix inclusion of OPENSSL_IS_BORINGSSL define

PR-URL: https://github.com/nodejs/node/pull/58845
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Richard Lau <rlau@redhat.com>
This commit is contained in:
Shelley Vohr
2025-07-01 14:57:57 +02:00
committed by GitHub
parent 2022f832a9
commit a7a37c3ac6

View File

@@ -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;