- Hoshino Lina: Update to cef-143.0.9+ge88e818 (rhbz#2420939) - * High CVE-2025-13630: Type Confusion in V8 - * High CVE-2025-13631: Inappropriate implementation in Google Updater - * High CVE-2025-13632: Inappropriate implementation in DevTools - * High CVE-2025-13633: Use after free in Digital Credentials - * Medium CVE-2025-13634: Inappropriate implementation in Downloads - * Medium CVE-2025-13720: Bad cast in Loader - * Medium CVE-2025-13721: Race in v8 - * Low CVE-2025-13635: Inappropriate implementation in Downloads - * Low CVE-2025-13636: Inappropriate implementation in Split View - * Low CVE-2025-13637: Inappropriate implementation in Downloads - * Low CVE-2025-13638: Use after free in Media Stream - * Low CVE-2025-13639: Inappropriate implementation in WebRTC - * Low CVE-2025-13640: Inappropriate implementation in Passwords - Drop workaround darkmode-image-policy.patch - Fix build error due to Unresolved dependencies - Fix swiftshader to compile with llvm-16.0 - Refresh python-3.9-ftbfs patch for el9 - Refresh ppc64le patches - Refresh chromium.conf
23 lines
698 B
Diff
23 lines
698 B
Diff
Index: chromium-143.0.7499.40/third_party/webrtc/rtc_base/system/arch.h
|
|
===================================================================
|
|
--- chromium-143.0.7499.40.orig/third_party/webrtc/rtc_base/system/arch.h
|
|
+++ chromium-143.0.7499.40/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
|