From: Thorsten Glaser Date: Mon, 13 Mar 2017 10:48:26 +0000 (+0000) Subject: Fix FTBFS in x32 X-Git-Tag: archive/raspbian/2.14.5-2+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=341f015692a1f5eb4d4b522c2f841df49430137b;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) \