summaryrefslogtreecommitdiffstats
path: root/make/config/jogl/gl3-headers.cfg
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-07-28 16:23:05 +0200
committerSven Gothel <[email protected]>2011-07-28 16:23:05 +0200
commit81a679d3b1a63ed91b7909db24e1fee58d69b3c2 (patch)
tree2b85e419a2f937d69d1d3cf1711f2325b6cc924c /make/config/jogl/gl3-headers.cfg
parent02791a2ac598e36c343b74ae07fe2a0e09ea7303 (diff)
gl header cfg: use __unix__ define, instead of all avail variations (linux, sun, ..)
Diffstat (limited to 'make/config/jogl/gl3-headers.cfg')
-rw-r--r--make/config/jogl/gl3-headers.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/config/jogl/gl3-headers.cfg b/make/config/jogl/gl3-headers.cfg
index 8af9157cf..3cab4a4e9 100644
--- a/make/config/jogl/gl3-headers.cfg
+++ b/make/config/jogl/gl3-headers.cfg
@@ -17,7 +17,7 @@ CustomCCode #include </usr/include/machine/types.h>
CustomCCode /* Provide Windows typedefs */
CustomCCode typedef void* LPVOID;
CustomCCode typedef unsigned int* PUINT;
-CustomCCode #elif defined(linux) || defined(__sun) || defined(__FreeBSD__) || defined(_HPUX)
+CustomCCode #elif defined(__unix__)
CustomCCode #include <inttypes.h>
CustomCCode #include <stdlib.h>
CustomCCode #include <X11/Xlib.h>