aboutsummaryrefslogtreecommitdiffstats
path: root/make/intptr.cfg
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2008-06-25 03:03:40 +0000
committerSven Gothel <[email protected]>2008-06-25 03:03:40 +0000
commit800c7da4656277810d579e76b74558434bb6467c (patch)
tree3ecb500cd80bc3da786531c778aba31e2f2e1f71 /make/intptr.cfg
parent78034f23da7d7dbb1d807b0b0a20c5828b7d62de (diff)
native compilation clean: X11
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1679 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/intptr.cfg')
-rwxr-xr-xmake/intptr.cfg26
1 files changed, 14 insertions, 12 deletions
diff --git a/make/intptr.cfg b/make/intptr.cfg
index 04c9605ec..42f910004 100755
--- a/make/intptr.cfg
+++ b/make/intptr.cfg
@@ -1,15 +1,17 @@
CustomCCode #ifdef WIN32
-CustomCCode #ifdef _MSC_VER
-CustomCCode /* This typedef is apparently needed for Microsoft compilers before VC8,
-CustomCCode and on Windows CE */
-CustomCCode #if (_MSC_VER < 1400) || defined(UNDER_CE)
-CustomCCode #ifdef _WIN64
-CustomCCode typedef long long intptr_t;
+CustomCCode #ifdef _MSC_VER
+CustomCCode /* This typedef is apparently needed for Microsoft compilers before VC8,
+CustomCCode and on Windows CE */
+CustomCCode #if (_MSC_VER < 1400) || defined(UNDER_CE)
+CustomCCode #ifdef _WIN64
+CustomCCode typedef long long intptr_t;
+CustomCCode #else
+CustomCCode typedef int intptr_t;
+CustomCCode #endif
+CustomCCode #endif
+CustomCCode #else
+CustomCCode #include <inttypes.h>
+CustomCCode #endif
CustomCCode #else
-CustomCCode typedef int intptr_t;
-CustomCCode #endif
-CustomCCode #endif
-CustomCCode #else
-CustomCCode #include <inttypes.h>
-CustomCCode #endif
+CustomCCode #include <inttypes.h>
CustomCCode #endif