]> git.pld-linux.org Git - packages/qt5-qtwebkit.git/blame - x32.patch
- use cmake for build to reliably pass configs options to build system
[packages/qt5-qtwebkit.git] / x32.patch
CommitLineData
8a437667
JR
1From: Daniel Schepler <dschepler@gmail.com>
2Subject: Fix FTBFS in x32
3Bug-Debian: https://bugs.debian.org/700795
4Index: webkitgtk/Source/WTF/wtf/Platform.h
5===================================================================
6--- webkitgtk.orig/Source/WTF/wtf/Platform.h
7+++ webkitgtk/Source/WTF/wtf/Platform.h
8@@ -179,9 +179,13 @@
9 /* CPU(X86_64) - AMD64 / Intel64 / x86_64 64-bit */
10 #if defined(__x86_64__) \
11 || defined(_M_X64)
12+#ifdef __ILP32__
13+#define WTF_CPU_X86_64_32 1
14+#else
15 #define WTF_CPU_X86_64 1
16 #define WTF_CPU_X86_SSE2 1
17 #endif
9f9a5867 18+#endif
8a437667
JR
19
20 /* CPU(ARM64) - Apple */
21 #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)
This page took 0.115173 seconds and 4 git commands to generate.