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/ Requested by: mikael (via email)
21 lines
946 B
C++
21 lines
946 B
C++
--- base/i18n/icu_util.cc.orig 2022-05-19 05:17:34 UTC
|
|
+++ base/i18n/icu_util.cc
|
|
@@ -52,7 +52,7 @@
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_FUCHSIA) || \
|
|
- ((BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)) && \
|
|
+ ((BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)) && \
|
|
!BUILDFLAG(IS_CHROMECAST))
|
|
#include "third_party/icu/source/i18n/unicode/timezone.h"
|
|
#endif
|
|
@@ -346,7 +346,7 @@ void InitializeIcuTimeZone() {
|
|
FuchsiaIntlProfileWatcher::GetPrimaryTimeZoneIdForIcuInitialization();
|
|
icu::TimeZone::adoptDefault(
|
|
icu::TimeZone::createTimeZone(icu::UnicodeString::fromUTF8(zone_id)));
|
|
-#elif (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)) && \
|
|
+#elif (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)) && \
|
|
!BUILDFLAG(IS_CHROMECAST)
|
|
// To respond to the time zone change properly, the default time zone
|
|
// cache in ICU has to be populated on starting up.
|