ports/www/ungoogled-chromium/patches/patch-build_toolchain_toolchain_gni

13 lines
420 B
Text
Raw Normal View History

2023-08-18 18:38:43 +00:00
Index: build/toolchain/toolchain.gni
--- build/toolchain/toolchain.gni.orig
+++ build/toolchain/toolchain.gni
2024-05-20 13:42:05 +00:00
@@ -68,7 +68,7 @@ if (host_os == "mac") {
2023-08-18 18:38:43 +00:00
host_shlib_extension = ".dylib"
} else if (host_os == "win") {
host_shlib_extension = ".dll"
2023-09-17 04:05:06 +00:00
-} else if (host_os == "linux" || host_os == "aix") {
2023-08-18 18:38:43 +00:00
+} else if (is_posix) {
host_shlib_extension = ".so"
} else {
assert(false, "Host platform not supported")