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 /src/native/jogl/InternalBufferUtils.c | |
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 'src/native/jogl/InternalBufferUtils.c')
-rw-r--r-- | src/native/jogl/InternalBufferUtils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/native/jogl/InternalBufferUtils.c b/src/native/jogl/InternalBufferUtils.c index 292d69f9d..cfda63ede 100644 --- a/src/native/jogl/InternalBufferUtils.c +++ b/src/native/jogl/InternalBufferUtils.c @@ -40,8 +40,8 @@ #include <jni.h> #ifdef _MSC_VER - /* This typedef seems to be needed at least for VC6 and Visual Studio 2003 */ - #if _MSC_VER <= 1300 + /* This typedef is apparently needed for compilers before VC8 */ + #if _MSC_VER < 1400 typedef int intptr_t; #endif #else |