Skip to content

Commit

Permalink
multimedia/ringrtc: Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelUrankar committed Dec 13, 2023
1 parent 27d6d5b commit 0783d3a
Showing 1 changed file with 11 additions and 0 deletions.
@@ -0,0 +1,11 @@
--- src/webrtc/src/build/toolchain/toolchain.gni.orig 2023-12-10 09:44:57 UTC
+++ src/webrtc/src/build/toolchain/toolchain.gni
@@ -67,7 +67,7 @@ if (host_os == "mac") {
host_shlib_extension = ".dylib"
} else if (host_os == "win") {
host_shlib_extension = ".dll"
-} else if (host_os == "linux" || host_os == "aix") {
+} else if (host_os == "freebsd" || host_os == "linux" || host_os == "aix") {
host_shlib_extension = ".so"
} else {
assert(false, "Host platform not supported")

0 comments on commit 0783d3a

Please sign in to comment.