ports/devel/electron25/files/patch-third__party_libsync_src_sync.c
Hiroki Tagato 611c0053ff devel/electron25: add port: Build cross-platform desktop apps with JavaScript, HTML, and CSS
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/
2023-06-27 16:12:40 +09:00

25 lines
524 B
C

--- third_party/libsync/src/sync.c.orig 2022-02-07 13:39:41 UTC
+++ third_party/libsync/src/sync.c
@@ -17,7 +17,9 @@
*/
#include <fcntl.h>
+#if !defined(__OpenBSD__)
#include <malloc.h>
+#endif
#include <stdint.h>
#include <string.h>
#include <errno.h>
@@ -29,6 +31,12 @@
#include <sync/sync.h>
+#if defined(__OpenBSD__) || defined(__FreeBSD__)
+typedef __uint8_t __u8;
+typedef __uint32_t __u32;
+typedef __int32_t __s32;
+#define ETIME ETIMEDOUT
+#endif
struct sw_sync_create_fence_data {
__u32 value;