mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -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
805 B
C
20 lines
805 B
C
--- base/synchronization/cancelable_event.h.orig 2025-03-24 20:50:14 UTC
|
|
+++ base/synchronization/cancelable_event.h
|
|
@@ -11,7 +11,7 @@
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
|
#include <windows.h>
|
|
-#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_CHROMEOS)
|
|
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
#include <semaphore.h>
|
|
#else
|
|
#include "base/synchronization/waitable_event.h"
|
|
@@ -49,7 +49,7 @@ class BASE_EXPORT CancelableEvent {
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
|
using NativeHandle = HANDLE;
|
|
-#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
|
|
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_BSD)
|
|
using NativeHandle = sem_t;
|
|
#else
|
|
using NativeHandle = WaitableEvent;
|