aacff36
Index: chromium-120.0.6099.71/third_party/webrtc/rtc_base/system/arch.h
aacff36
===================================================================
aacff36
--- chromium-120.0.6099.71.orig/third_party/webrtc/rtc_base/system/arch.h
aacff36
+++ chromium-120.0.6099.71/third_party/webrtc/rtc_base/system/arch.h
aacff36
@@ -46,6 +46,18 @@
aacff36
 #endif
aacff36
 #if defined(__MIPSEL__)
aacff36
 #define WEBRTC_ARCH_LITTLE_ENDIAN
aacff36
+#elif defined(__PPC__)
aacff36
+#define WEBRTC_ARCH_PPC_FAMILY
aacff36
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
aacff36
+#define WEBRTC_ARCH_LITTLE_ENDIAN
aacff36
+#else
aacff36
+#define WEBRTC_ARCH_BIG_ENDIAN
aacff36
+#endif
aacff36
+#if defined(__LP64__)
aacff36
+#define WEBRTC_ARCH_64_BITS
aacff36
+#else
aacff36
+#define WEBRTC_ARCH_32_BITS
aacff36
+#endif
aacff36
 #else
aacff36
 #define WEBRTC_ARCH_BIG_ENDIAN
aacff36
 #endif