ports/devel/electron30/files/patch-electron_shell_common_node__bindings.cc
Hiroki Tagato 9d7e29a857 devel/electron30: update to 30.2.0
Changelog: https://github.com/electron/electron/releases/tag/v30.2.0

Reported by:	GitHub (watch releases)
MFH:		2024Q3
Security:	6410f91d-1214-4f92-b7e0-852e39e265f9
2024-07-16 18:19:33 +09:00

29 lines
1.2 KiB
C++

--- electron/shell/common/node_bindings.cc.orig 2024-07-09 23:10:34 UTC
+++ electron/shell/common/node_bindings.cc
@@ -43,7 +43,7 @@
#include "third_party/electron_node/src/debug_utils.h"
#include "third_party/electron_node/src/module_wrap.h"
-#if !IS_MAS_BUILD()
+#if !IS_MAS_BUILD() && !BUILDFLAG(IS_BSD)
#include "shell/common/crash_keys.h"
#endif
@@ -157,7 +157,7 @@ void V8FatalErrorCallback(const char* location, const
void V8FatalErrorCallback(const char* location, const char* message) {
LOG(ERROR) << "Fatal error in V8: " << location << " " << message;
-#if !IS_MAS_BUILD()
+#if !IS_MAS_BUILD() && !BUILDFLAG(IS_BSD)
electron::crash_keys::SetCrashKey("electron.v8-fatal.message", message);
electron::crash_keys::SetCrashKey("electron.v8-fatal.location", location);
#endif
@@ -517,7 +517,7 @@ void NodeBindings::Initialize(v8::Local<v8::Context> c
TRACE_EVENT0("electron", "NodeBindings::Initialize");
// Open node's error reporting system for browser process.
-#if BUILDFLAG(IS_LINUX)
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
// Get real command line in renderer process forked by zygote.
if (browser_env_ != BrowserEnvironment::kBrowser)
ElectronCommandLine::InitializeFromCommandLine();