We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a954e commit 161b84cCopy full SHA for 161b84c
1 file changed
src/node.cc
@@ -1030,7 +1030,7 @@ InitializationResult InitializeOncePerProcess(
1030
}
1031
1032
if (init_flags & kInitOpenSSL) {
1033
-#if HAVE_OPENSSL
+#if HAVE_OPENSSL && !defined(OPENSSL_IS_BORINGSSL)
1034
{
1035
std::string extra_ca_certs;
1036
if (credentials::SafeGetenv("NODE_EXTRA_CA_CERTS", &extra_ca_certs))
@@ -1091,7 +1091,7 @@ InitializationResult InitializeOncePerProcess(
1091
// V8 on Windows doesn't have a good source of entropy. Seed it from
1092
// OpenSSL's pool.
1093
V8::SetEntropySource(crypto::EntropySource);
1094
-#endif // HAVE_OPENSSL
+#endif // HAVE_OPENSSL && !defined(OPENSSL_IS_BORINGSSL)
1095
1096
per_process::v8_platform.Initialize(
1097
static_cast<int>(per_process::cli_options->v8_thread_pool_size));
0 commit comments