- * Update to cef-140.1.15+gfaef09b (rhbz#2380429) (Asahi Lina) - * CVE-2025-9864: Use after free in V8 - * CVE-2025-9865: Inappropriate implementation in Toolbar - * CVE-2025-9866: Inappropriate implementation in Extensions - * CVE-2025-9867: Inappropriate implementation in Downloads
23 lines
698 B
Diff
23 lines
698 B
Diff
Index: chromium-140.0.7339.41/third_party/webrtc/rtc_base/system/arch.h
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/third_party/webrtc/rtc_base/system/arch.h
|
|
+++ chromium-140.0.7339.41/third_party/webrtc/rtc_base/system/arch.h
|
|
@@ -46,6 +46,18 @@
|
|
#endif
|
|
#if defined(__MIPSEL__)
|
|
#define WEBRTC_ARCH_LITTLE_ENDIAN
|
|
+#elif defined(__PPC__)
|
|
+#define WEBRTC_ARCH_PPC_FAMILY
|
|
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
|
+#define WEBRTC_ARCH_LITTLE_ENDIAN
|
|
+#else
|
|
+#define WEBRTC_ARCH_BIG_ENDIAN
|
|
+#endif
|
|
+#if defined(__LP64__)
|
|
+#define WEBRTC_ARCH_64_BITS
|
|
+#else
|
|
+#define WEBRTC_ARCH_32_BITS
|
|
+#endif
|
|
#else
|
|
#define WEBRTC_ARCH_BIG_ENDIAN
|
|
#endif
|