mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 06:30:29 -04:00
17 lines
381 B
C++
17 lines
381 B
C++
--- content/common/user_agent.cc.orig 2021-07-15 19:13:39 UTC
|
|
+++ content/common/user_agent.cc
|
|
@@ -225,6 +225,14 @@ std::string BuildOSCpuInfoFromOSVersionAndCpuType(cons
|
|
);
|
|
#endif
|
|
|
|
+#if defined(OS_BSD)
|
|
+#if defined(__x86_64__)
|
|
+ base::StringAppendF(&os_cpu, "; Linux x86_64");
|
|
+#else
|
|
+ base::StringAppendF(&os_cpu, "; Linux i686");
|
|
+#endif
|
|
+#endif
|
|
+
|
|
return os_cpu;
|
|
}
|
|
|