diff options
| author | Erik Kundiman <erik@megapahit.org> | 2025-10-03 21:33:50 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2025-10-03 21:33:50 +0800 |
| commit | 7fa057857f6f5bf7f5f337e51045fde6fdcc45e2 (patch) | |
| tree | 50d6c38f41490085c28332590258f6e5e062f2b0 | |
| parent | 4a214bc23ca4a99ac57dc0c8e889743c57ae7b29 (diff) | |
Omit WebRTC (termination) on FreeBSD and Win ARM64
| -rw-r--r-- | indra/newview/llvoiceclient.cpp | 2 |
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(); |
