From: David Matthew Mattli Date: Sun, 3 Mar 2019 13:49:26 +0000 (+0000) Subject: Fix FTBFS in sparc64 X-Git-Tag: archive/raspbian/2.22.7-1+rpi1^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=520e6ae5f6dd222d40dd4f2e1291705360f3e712;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 67cfa93313..fcf76958b6 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -115,6 +115,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) \