summaryrefslogtreecommitdiffstats
path: root/make/wglext.cfg
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2007-01-03 09:37:40 +0000
committerKenneth Russel <[email protected]>2007-01-03 09:37:40 +0000
commitda9c4dd399d2742afb429f50e8ddc9c93867558c (patch)
tree2bb8508392850b43adf16f0d5bb6670a12d00fc9 /make/wglext.cfg
parentfb65a3ccb2c05d70e6a4c642d96d57b9135accd5 (diff)
Fixes for building with Visual Studio .NET 2003 (Service Pack 1)
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@1063 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/wglext.cfg')
-rw-r--r--make/wglext.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/wglext.cfg b/make/wglext.cfg
index eedcd4d72..822c24ab8 100644
--- a/make/wglext.cfg
+++ b/make/wglext.cfg
@@ -34,8 +34,8 @@ CustomCCode /* Include the OpenGL headers */
CustomCCode #include <GL/gl.h>
CustomCCode #include <GL/wglext.h>
-CustomCCode /* This typedef is only needed for VC6 */
-CustomCCode #if _MSC_VER <= 1200
+CustomCCode /* This typedef is apparently needed for compilers before VC8 */
+CustomCCode #if _MSC_VER < 1400
CustomCCode typedef int intptr_t;
CustomCCode #endif