From c8d51b53141b76e7781a73b8912894a62b3fc975 Mon Sep 17 00:00:00 2001 From: kbr Date: Thu, 18 Jan 2007 22:21:57 +0000 Subject: Fixed build problem with VC7 git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@424 03bf7f67-59de-4072-a415-9a990d468a3f --- make/joal-common-CustomCCode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/joal-common-CustomCCode.c b/make/joal-common-CustomCCode.c index a58e869..593f1d5 100755 --- a/make/joal-common-CustomCCode.c +++ b/make/joal-common-CustomCCode.c @@ -1,6 +1,6 @@ #ifdef _MSC_VER /* Windows, Microsoft compilers */ -/* This typedef is only needed for VC6 */ -#if _MSC_VER <= 1200 +/* This typedef is apparently needed for compilers before VC8 */ +#if _MSC_VER < 1400 typedef int intptr_t; #endif #else -- cgit v1.2.3