diff options
author | Andreas Kling <andreas.kling@nokia.com> | 2011-06-08 10:47:34 (GMT) |
---|---|---|
committer | Andreas Kling <andreas.kling@nokia.com> | 2011-06-08 10:47:34 (GMT) |
commit | 20deac14b94c9a0188ad3cbe70844b691cb5a381 (patch) | |
tree | 2a2f6cb9a882cc7b0ef6d217dd3162cf321d1944 /src/3rdparty/webkit | |
parent | a7b134ae44bc03fc0a4427d750b32d50625a37ce (diff) | |
download | Qt-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.cpp | 4 |
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 { |