aboutsummaryrefslogtreecommitdiff
path: root/devel/electron13/files/patch-electron_shell_common_node__bindings.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron13/files/patch-electron_shell_common_node__bindings.cc')
-rw-r--r--devel/electron13/files/patch-electron_shell_common_node__bindings.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/devel/electron13/files/patch-electron_shell_common_node__bindings.cc b/devel/electron13/files/patch-electron_shell_common_node__bindings.cc
new file mode 100644
index 000000000000..ddfd63a3d3eb
--- /dev/null
+++ b/devel/electron13/files/patch-electron_shell_common_node__bindings.cc
@@ -0,0 +1,29 @@
+--- electron/shell/common/node_bindings.cc.orig 2021-10-11 17:12:26 UTC
++++ electron/shell/common/node_bindings.cc
+@@ -35,7 +35,7 @@
+ #include "shell/common/node_includes.h"
+ #include "third_party/blink/renderer/bindings/core/v8/v8_initializer.h" // nogncheck
+
+-#if !defined(MAS_BUILD)
++#if !defined(MAS_BUILD) && !defined(OS_BSD)
+ #include "shell/common/crash_keys.h"
+ #endif
+
+@@ -150,7 +150,7 @@ bool IsPackagedApp() {
+ void V8FatalErrorCallback(const char* location, const char* message) {
+ LOG(ERROR) << "Fatal error in V8: " << location << " " << message;
+
+-#if !defined(MAS_BUILD)
++#if !defined(MAS_BUILD) && !defined(OS_BSD)
+ electron::crash_keys::SetCrashKey("electron.v8-fatal.message", message);
+ electron::crash_keys::SetCrashKey("electron.v8-fatal.location", location);
+ #endif
+@@ -355,7 +355,7 @@ void NodeBindings::Initialize() {
+ // Open node's error reporting system for browser process.
+ node::g_upstream_node_mode = false;
+
+-#if defined(OS_LINUX)
++#if defined(OS_LINUX) || defined(OS_BSD)
+ // Get real command line in renderer process forked by zygote.
+ if (browser_env_ != BrowserEnvironment::kBrowser)
+ ElectronCommandLine::InitializeFromCommandLine();