include stdint.h for BSD
authorBrian Paul <brian.paul@tungstengraphics.com>
Sun, 27 Nov 2005 23:46:55 +0000 (23:46 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sun, 27 Nov 2005 23:46:55 +0000 (23:46 +0000)
src/mesa/main/glheader.h

index 4e3e3b5d28897245e05f58af58855a14bd9090b3..316a008ae301f4ef64650213ffaeead7258ff0c7 100644 (file)
@@ -20,7 +20,7 @@
 
 /*
  * Mesa 3-D graphics library
 
 /*
  * Mesa 3-D graphics library
- * Version:  6.3
+ * Version:  6.5
  *
  * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved.
  *
  *
  * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved.
  *
 
 
 /* Get typedefs for uintptr_t and friends */
 
 
 /* Get typedefs for uintptr_t and friends */
-#if defined(_WIN32) && !defined(__MINGW32__)
-#include <BaseTsd.h>
-#if _MSC_VER == 1200
-typedef UINT_PTR uintptr_t;
-#endif 
-#if defined(__MINGW32__)
-#include <stdint.h>
-#endif
+#if defined(__MINGW32__) || defined(__NetBSD__)
+#  include <stdint.h>
+#elif defined(_WIN32)
+#  include <BaseTsd.h>
+#  if _MSC_VER == 1200
+     typedef UINT_PTR uintptr_t;
+#  endif 
 #else
 #else
-#include <inttypes.h>
+#  include <inttypes.h>
 #endif
 
 #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) && !defined(BUILD_FOR_SNAP)
 #endif
 
 #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) && !defined(BUILD_FOR_SNAP)