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 | 438e69da7bf59b9f513e890626b87c7b373ce966 (patch) | |
tree | 9a57532cc7bdacc10997ceee865f2f55413755d0 /src | |
parent | 7312c3822cd8538df108279b22e122a3c50032f7 (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/gluegen/trunk@55 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'src')
-rwxr-xr-x | src/native/windows/WindowsDynamicLinkerImpl_JNI.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/native/windows/WindowsDynamicLinkerImpl_JNI.c b/src/native/windows/WindowsDynamicLinkerImpl_JNI.c index 2b99098..db20b15 100755 --- a/src/native/windows/WindowsDynamicLinkerImpl_JNI.c +++ b/src/native/windows/WindowsDynamicLinkerImpl_JNI.c @@ -5,8 +5,8 @@ #include <assert.h> #include <windows.h> - /* 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 |