mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 08:40:39 -04:00
- Make existing patches apply cleanly Changelog: https://chromium.googlesource.com/chromium/src/+log/72.0.3626.121..73.0.3683.86?pretty=fuller&n=10000 Submitted by: Matthias Wolf MFH: 2019Q2
17 lines
392 B
C++
17 lines
392 B
C++
--- content/common/user_agent.cc.orig 2019-03-11 22:00:58 UTC
|
|
+++ content/common/user_agent.cc
|
|
@@ -131,6 +131,14 @@ std::string BuildOSCpuInfo(bool include_android_build_
|
|
#endif
|
|
); // NOLINT
|
|
|
|
+#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;
|
|
}
|
|
|