diff options
author | Kenneth Russel <[email protected]> | 2007-01-03 09:37:40 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2007-01-03 09:37:40 +0000 |
commit | da9c4dd399d2742afb429f50e8ddc9c93867558c (patch) | |
tree | 2bb8508392850b43adf16f0d5bb6670a12d00fc9 /make/wglext.cfg | |
parent | fb65a3ccb2c05d70e6a4c642d96d57b9135accd5 (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.cfg | 4 |
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 |