summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-10-03 21:33:50 +0800
committerErik Kundiman <erik@megapahit.org>2025-10-03 21:33:50 +0800
commit7fa057857f6f5bf7f5f337e51045fde6fdcc45e2 (patch)
tree50d6c38f41490085c28332590258f6e5e062f2b0
parent4a214bc23ca4a99ac57dc0c8e889743c57ae7b29 (diff)
Omit WebRTC (termination) on FreeBSD and Win ARM64
-rw-r--r--indra/newview/llvoiceclient.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp
index d8413ce776..59e8db7752 100644
--- a/indra/newview/llvoiceclient.cpp
+++ b/indra/newview/llvoiceclient.cpp
@@ -302,10 +302,12 @@ void LLVoiceClient::setHidden(bool hidden)
void LLVoiceClient::terminate()
{
+#if !__FreeBSD__ && !_M_ARM64
if (LLVivoxVoiceClient::instanceExists())
{
LLWebRTCVoiceClient::getInstance()->terminate();
}
+#endif
if (LLVivoxVoiceClient::instanceExists())
{
LLVivoxVoiceClient::getInstance()->terminate();