diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-11-04 00:52:08 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-11-04 00:52:08 +0000 |
commit | 84f3ff91d967887545363cc826b118120a135a58 (patch) | |
tree | 887f03d109b88beba75dcb1c82542b3398885308 /src/mesa/main/glheader.h | |
parent | d78834b3061c8e43dde583363e0896cb554f2fcc (diff) |
fix MinGW problems (bug 4956)
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index 4c75585c4d..4e3e3b5d28 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -71,7 +71,7 @@ /* Get typedefs for uintptr_t and friends */ -#if defined(_WIN32) +#if defined(_WIN32) && !defined(__MINGW32__) #include <BaseTsd.h> #if _MSC_VER == 1200 typedef UINT_PTR uintptr_t; |