summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit
diff options
context:
space:
mode:
authorAndreas Kling <andreas.kling@nokia.com>2011-06-08 10:47:34 (GMT)
committerAndreas Kling <andreas.kling@nokia.com>2011-06-08 10:47:34 (GMT)
commit20deac14b94c9a0188ad3cbe70844b691cb5a381 (patch)
tree2a2f6cb9a882cc7b0ef6d217dd3162cf321d1944 /src/3rdparty/webkit
parenta7b134ae44bc03fc0a4427d750b32d50625a37ce (diff)
downloadQt-20deac14b94c9a0188ad3cbe70844b691cb5a381.zip
Qt-20deac14b94c9a0188ad3cbe70844b691cb5a381.tar.gz
Qt-20deac14b94c9a0188ad3cbe70844b691cb5a381.tar.bz2
Hack SystemTimeWin.cpp to build on MSVC2005.
Diffstat (limited to 'src/3rdparty/webkit')
-rw-r--r--src/3rdparty/webkit/Source/WebCore/platform/win/SystemTimeWin.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/Source/WebCore/platform/win/SystemTimeWin.cpp b/src/3rdparty/webkit/Source/WebCore/platform/win/SystemTimeWin.cpp
index 547decc..0449904 100644
--- a/src/3rdparty/webkit/Source/WebCore/platform/win/SystemTimeWin.cpp
+++ b/src/3rdparty/webkit/Source/WebCore/platform/win/SystemTimeWin.cpp
@@ -27,6 +27,10 @@
#include "SystemTime.h"
#include <limits>
+
+#ifndef _WIN32_WINNT
+#define _WIN32_WINNT 0x0500
+#endif
#include <windows.h>
namespace WebCore {