summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@nokia.com>2010-04-07 12:25:20 (GMT)
committerJocelyn Turcotte <jocelyn.turcotte@nokia.com>2010-04-12 19:27:53 (GMT)
commitf30fd17fa1354a4bd6d4b4714723b2028a6b70cc (patch)
tree014bf5c846a94ce86e1798732571fd87fdb36830 /src/3rdparty
parentab82e84901ba8384f75a12da82fed6a47d483038 (diff)
downloadQt-f30fd17fa1354a4bd6d4b4714723b2028a6b70cc.zip
Qt-f30fd17fa1354a4bd6d4b4714723b2028a6b70cc.tar.gz
Qt-f30fd17fa1354a4bd6d4b4714723b2028a6b70cc.tar.bz2
QtWebKit: Build fix for WinCE.
Moved the include of an incompatible header inside platform guard macros. This commit should be overwritten with the next WebKit import. Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/webkit/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp b/src/3rdparty/webkit/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
index dd1db4e..4d3c847 100644
--- a/src/3rdparty/webkit/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
+++ b/src/3rdparty/webkit/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
@@ -27,10 +27,10 @@
#include "ExecutableAllocator.h"
-#include <errno.h>
-
#if ENABLE(ASSEMBLER) && OS(DARWIN) && CPU(X86_64)
+#include <errno.h>
+
#include "TCSpinLock.h"
#include <mach/mach_init.h>
#include <mach/vm_map.h>