From: Thorsten Glaser Date: Tue, 9 May 2017 13:48:39 +0000 (+0000) Subject: Fix FTBFS in x32 X-Git-Tag: archive/raspbian/2.14.7-1+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=911b4d6b48bec9b57b737a92500d9cb9034b47b0;p=webkit2gtk.git Fix FTBFS in x32 =================================================================== Gbp-Pq: Name fix-ftbfs-x32.patch --- diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h index 3e202628a6..25131a92c4 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -696,7 +696,7 @@ #endif #if !defined(USE_JSVALUE64) && !defined(USE_JSVALUE32_64) -#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS))) \ +#if (CPU(X86_64) && !defined(__ILP32__) && (OS(UNIX) || OS(WINDOWS))) \ || (CPU(IA64) && !CPU(IA64_32)) \ || CPU(ALPHA) \ || CPU(ARM64) \