diff options
author | Brian Paul <[email protected]> | 2005-06-13 14:07:14 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-06-13 14:07:14 +0000 |
commit | 2d218885ecb0bf82cbfd33da1b9186bf6e09375b (patch) | |
tree | 200bf17a947e754c1f36872d1afdea4374012c0c /src/mesa/main/glheader.h | |
parent | 902e70875d421b14195f7fedb8303bb079607dcc (diff) |
mingw changes (Nolan Leake)
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index f8ea238f42e..abb858638eb 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -81,6 +81,9 @@ #if _MSC_VER == 1200 typedef UINT_PTR uintptr_t; #endif +#if defined(__MINGW32__) +#include <stdint.h> +#endif #else #include <inttypes.h> #endif |