ports/www/iridium/patches/patch-build_config_BUILD_gn

15 lines
435 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: build/config/BUILD.gn
--- build/config/BUILD.gn.orig
+++ build/config/BUILD.gn
2023-08-28 01:43:33 +00:00
@@ -214,6 +214,10 @@ config("default_libs") {
# Targets should choose to explicitly link frameworks they require. Since
# linking can have run-time side effects, nothing should be listed here.
libs = []
2023-08-16 22:26:55 +00:00
+ } else if (is_bsd) {
+ libs = [
+ "pthread",
+ ]
2023-08-28 01:43:33 +00:00
} else if (is_linux || is_chromeos) {
libs = [
"dl",