From: Thorsten Glaser Date: Wed, 26 Apr 2017 07:31:43 +0000 (+0000) Subject: Fix FTBFS in x32 X-Git-Tag: archive/raspbian/2.14.7-1+rpi1~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2819593cfce0bd92c3f994c2834f3767fd07b327;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) \