summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-11-04 00:52:08 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-11-04 00:52:08 +0000
commit84f3ff91d967887545363cc826b118120a135a58 (patch)
tree887f03d109b88beba75dcb1c82542b3398885308 /src/mesa/main
parentd78834b3061c8e43dde583363e0896cb554f2fcc (diff)
fix MinGW problems (bug 4956)
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/glheader.h2
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;