aboutsummaryrefslogtreecommitdiff
path: root/devel/electron33/files/patch-base_system_sys__info__posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron33/files/patch-base_system_sys__info__posix.cc')
-rw-r--r--devel/electron33/files/patch-base_system_sys__info__posix.cc29
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/electron33/files/patch-base_system_sys__info__posix.cc b/devel/electron33/files/patch-base_system_sys__info__posix.cc
deleted file mode 100644
index dbe3f58eec9e..000000000000
--- a/devel/electron33/files/patch-base_system_sys__info__posix.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- base/system/sys_info_posix.cc.orig 2024-10-16 21:30:44 UTC
-+++ base/system/sys_info_posix.cc
-@@ -117,7 +117,7 @@ namespace base {
-
- namespace base {
-
--#if !BUILDFLAG(IS_OPENBSD)
-+#if !BUILDFLAG(IS_BSD)
- // static
- int SysInfo::NumberOfProcessors() {
- #if BUILDFLAG(IS_MAC)
-@@ -173,7 +173,7 @@ int SysInfo::NumberOfProcessors() {
-
- return cached_num_cpus;
- }
--#endif // !BUILDFLAG(IS_OPENBSD)
-+#endif // !BUILDFLAG(IS_BSD)
-
- // static
- uint64_t SysInfo::AmountOfVirtualMemory() {
-@@ -256,6 +256,8 @@ std::string SysInfo::OperatingSystemArchitecture() {
- arch = "x86";
- } else if (arch == "amd64") {
- arch = "x86_64";
-+ } else if (arch == "arm64") {
-+ arch = "aarch64";
- } else if (std::string(info.sysname) == "AIX") {
- arch = "ppc64";
- }