mirror of
https://git.freebsd.org/ports.git
synced 2025-05-02 11:36: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
814 B
C++
20 lines
814 B
C++
--- base/files/dir_reader_posix.h.orig 2022-06-17 14:20:10 UTC
|
|
+++ base/files/dir_reader_posix.h
|
|
@@ -17,7 +17,7 @@
|
|
// seems worse than falling back to enumerating all file descriptors so we will
|
|
// probably never implement this on the Mac.
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_BSD)
|
|
#include "base/files/dir_reader_linux.h"
|
|
#else
|
|
#include "base/files/dir_reader_fallback.h"
|
|
@@ -25,7 +25,7 @@
|
|
|
|
namespace base {
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_BSD)
|
|
typedef DirReaderLinux DirReaderPosix;
|
|
#else
|
|
typedef DirReaderFallback DirReaderPosix;
|