From: David Matthew Mattli Date: Tue, 9 Apr 2019 14:31:03 +0000 (+0100) Subject: Fix FTBFS in sparc64 X-Git-Tag: archive/raspbian/2.24.2-1+rpi1^2~1^2^2~9 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0446ddb9e2b2cfe0449142e1232374ef7d80068a;p=webkit2gtk.git Fix FTBFS in sparc64 =================================================================== Gbp-Pq: Name fix-ftbfs-sparc64.patch --- diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h index cc2b11b60c..52ab1be28b 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -114,6 +114,11 @@ #define WTF_CPU_KNOWN 1 #endif +/* CPU(SPARC64) - sparc64 */ +#if defined(__sparc__) && defined(__sparc_v9__) +#define WTF_CPU_BIG_ENDIAN 1 +#endif + /* CPU(X86) - i386 / x86 32-bit */ #if defined(__i386__) \ || defined(i386) \