summaryrefslogtreecommitdiffstats
path: root/make/joal-common-CustomCCode.c
diff options
context:
space:
mode:
authorkbr <[email protected]>2007-01-18 22:21:57 +0000
committerkbr <[email protected]>2007-01-18 22:21:57 +0000
commitc8d51b53141b76e7781a73b8912894a62b3fc975 (patch)
tree0493e16d747628f3e5452b89137be3b06143dd97 /make/joal-common-CustomCCode.c
parenta90b3c461c1edc8eb5043b0d9a78f6af0739bb88 (diff)
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
Diffstat (limited to 'make/joal-common-CustomCCode.c')
-rwxr-xr-xmake/joal-common-CustomCCode.c4
1 files 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