diff options
author | Matt Corallo <matt@bluematt.me> | 2012-05-02 20:21:43 -0400 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2012-05-02 20:21:43 -0400 |
commit | 234db30d6621d35b2c670891def1d52b39f44686 (patch) | |
tree | a9aff308fb734f4cf9621006347def6dfa94f5c4 /src/util.cpp | |
parent | e19ccfa657094590d52741066ea161855975ace3 (diff) |
Update to require IE 5.1 as it is required on mingw64.
We already require XP, this just fixes Mingw64 build.
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index cd3d3b94a9..a95cf811b5 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -43,7 +43,7 @@ namespace boost { #ifdef _WIN32_IE #undef _WIN32_IE #endif -#define _WIN32_IE 0x0400 +#define _WIN32_IE 0x0501 #define WIN32_LEAN_AND_MEAN 1 #ifndef NOMINMAX #define NOMINMAX |