diff options
author | Sven Gothel <[email protected]> | 2010-05-16 03:57:53 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-16 03:57:53 +0200 |
commit | baf07fa357d98783fb929d47d8802fbb3f318191 (patch) | |
tree | e5671ba76c0c106c38954e766d717a4419ce613c /src/jogl/native/openmax | |
parent | 03ce683b4e25716a0973aa6c1acb8698dbb3bb08 (diff) |
GlueGen/JOGL Windows x86 x86_64 Builds
x86: Using mingw 20100514, gcc 4.5.0
- clean
- passed all junit.run tests
x86_64: Using mingw-w64-bin_x86_64-mingw_20100515_sezero.zip, gcc 4.4.5 20100513
- clean
- passed most junit.run tests, still buggy
Diffstat (limited to 'src/jogl/native/openmax')
-rw-r--r-- | src/jogl/native/openmax/omx_tool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/native/openmax/omx_tool.h b/src/jogl/native/openmax/omx_tool.h index 9c0df93b3..1a0adf0a0 100644 --- a/src/jogl/native/openmax/omx_tool.h +++ b/src/jogl/native/openmax/omx_tool.h @@ -11,7 +11,7 @@ #ifdef _MSC_VER /* This typedef is apparently needed for Microsoft compilers before VC8, and on Windows CE */ - #if (_MSC_VER < 1400) || defined(UNDER_CE) + #if !defined(__MINGW64__) && ( defined(UNDER_CE) || _MSC_VER <= 1400 ) #ifdef _WIN64 typedef long long intptr_t; #else |