ports/www/chromium/files/patch-build_config_BUILD.gn
Robert Nagy c080558054 www/chromium: update to 106.0.5249.61
Security:	18529cb0-3e9c-11ed-9bc7-3065ec8fd3ec
2022-09-28 10:00:11 +02:00

22 lines
456 B
Text

--- build/config/BUILD.gn.orig 2022-09-24 10:57:32 UTC
+++ build/config/BUILD.gn
@@ -215,13 +215,17 @@ config("default_libs") {
"CoreText.framework",
"Foundation.framework",
]
- } else if (is_linux || is_chromeos) {
+ } else if ((is_linux && !is_bsd) || is_chromeos) {
libs = [
"dl",
"pthread",
"rt",
]
- }
+ } else if (is_bsd) {
+ libs = [
+ "pthread",
+ ]
+ }
}
group("common_deps") {