summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit
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-07 12:25:20 (GMT)
commitff074db8d73139e51979b7e66f99050349a32f95 (patch)
tree54a71f34f4fc0b3037adeffb1cf6464fe6d1d5fd /src/3rdparty/webkit
parent13e696c9b80349084b07beade8dafc3b5f513934 (diff)
downloadQt-ff074db8d73139e51979b7e66f99050349a32f95.zip
Qt-ff074db8d73139e51979b7e66f99050349a32f95.tar.gz
Qt-ff074db8d73139e51979b7e66f99050349a32f95.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/webkit')
-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>