From: Thorsten Glaser Date: Fri, 7 Apr 2017 10:56:45 +0000 (+0000) Subject: Fix FTBFS in x32 X-Git-Tag: archive/raspbian/2.14.7-1+rpi1~1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4e4c8a38e499873c16cffeaa4729a13650f0e823;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) \