aboutsummaryrefslogtreecommitdiff
path: root/www/qt6-webengine/files/patch-src_3rdparty_chromium_build_config_BUILD.gn
blob: b1f5f44f2f8008e8642ac74930f198f0a02d4a77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- src/3rdparty/chromium/build/config/BUILD.gn.orig	2023-08-16 19:50:41 UTC
+++ src/3rdparty/chromium/build/config/BUILD.gn
@@ -222,13 +222,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") {