mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
20 lines
701 B
C++
20 lines
701 B
C++
--- v8/src/api/api.cc.orig 2024-08-30 11:29:39 UTC
|
|
+++ v8/src/api/api.cc
|
|
@@ -148,7 +148,7 @@
|
|
#include "src/wasm/wasm-serialization.h"
|
|
#endif // V8_ENABLE_WEBASSEMBLY
|
|
|
|
-#if V8_OS_LINUX || V8_OS_DARWIN || V8_OS_FREEBSD
|
|
+#if V8_OS_LINUX || V8_OS_DARWIN || V8_OS_FREEBSD || V8_OS_OPENBSD
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
|
|
@@ -6530,7 +6530,7 @@ bool v8::V8::Initialize(const int build_config) {
|
|
return true;
|
|
}
|
|
|
|
-#if V8_OS_LINUX || V8_OS_DARWIN
|
|
+#if V8_OS_LINUX || V8_OS_DARWIN || V8_OS_FREEBSD || V8_OS_OPENBSD
|
|
bool TryHandleWebAssemblyTrapPosix(int sig_code, siginfo_t* info,
|
|
void* context) {
|
|
#if V8_ENABLE_WEBASSEMBLY && V8_TRAP_HANDLER_SUPPORTED
|