aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/gl-win32.cfg4
-rw-r--r--make/wglext.cfg4
2 files changed, 4 insertions, 4 deletions
diff --git a/make/gl-win32.cfg b/make/gl-win32.cfg
index 98278bd46..96234241c 100644
--- a/make/gl-win32.cfg
+++ b/make/gl-win32.cfg
@@ -27,8 +27,8 @@ CustomCCode #define GL_GLEXT_PROTOTYPES
CustomCCode /* Include the OpenGL headers */
CustomCCode #include <GL/gl.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
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