mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -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/
11 lines
663 B
C++
11 lines
663 B
C++
--- base/native_library_posix.cc.orig 2024-08-14 20:54:23 UTC
|
|
+++ base/native_library_posix.cc
|
|
@@ -34,7 +34,7 @@ NativeLibrary LoadNativeLibraryWithOptions(const FileP
|
|
// http://crbug.com/17943, http://crbug.com/17557, http://crbug.com/36892,
|
|
// and http://crbug.com/40794.
|
|
int flags = RTLD_LAZY;
|
|
-#if BUILDFLAG(IS_ANDROID) || !defined(RTLD_DEEPBIND)
|
|
+#if BUILDFLAG(IS_ANDROID) || !defined(RTLD_DEEPBIND) || BUILDFLAG(IS_BSD)
|
|
// Certain platforms don't define RTLD_DEEPBIND. Android dlopen() requires
|
|
// further investigation, as it might vary across versions. Crash here to
|
|
// warn developers that they're trying to rely on uncertain behavior.
|