commit da0861d6f7f7280518d2a4511d07401aecf50afa
parent e70895d604bf4554af3a0a95ba466d48fb24b593
Author: Landry Breuil <landry@rhaalovely.net>
Date: Mon, 27 Oct 2025 17:42:15 +0000
Bug 1994630: fix build on OpenBSD/arm64 after bug 1988042 r=mjf
we return false on BSD in Supports(), so no need to include something which doesn't exist
Differential Revision: https://phabricator.services.mozilla.com/D268827
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/third_party/libwebrtc/rtc_base/cpu_info.cc b/third_party/libwebrtc/rtc_base/cpu_info.cc
@@ -38,7 +38,7 @@
#if defined(WEBRTC_ARCH_X86_FAMILY) && defined(_MSC_VER)
#include <intrin.h>
#endif
-#if defined(WEBRTC_ARCH_ARM_FAMILY) && (defined(WEBRTC_LINUX) || defined(WEBRTC_BSD))
+#if defined(WEBRTC_ARCH_ARM_FAMILY) && defined(WEBRTC_LINUX)
#include <asm/hwcap.h>
#include <sys/auxv.h>
#endif