diff options
author | Sven Gothel <[email protected]> | 2013-10-24 23:43:43 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-24 23:43:43 +0200 |
commit | 970c9823007d1618e67480440ff40e7802dbb90f (patch) | |
tree | e29237cb0baa8121193ece29aa9d84a5e03f08f6 /make/config/jogl/gl3-headers.cfg | |
parent | 38025a602750161c72a50ad7a25e97fb7a6cb6df (diff) |
Bug 871 - Add optional xcode.clang support for all modules (Extends Bug 837 w/ xcode's xcrun) - Remove abs. include path.
#include </usr/include/machine/types.h> -> #include <machine/types.h>
Diffstat (limited to 'make/config/jogl/gl3-headers.cfg')
-rw-r--r-- | make/config/jogl/gl3-headers.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/config/jogl/gl3-headers.cfg b/make/config/jogl/gl3-headers.cfg index a4c5cf62a..d76d3ae4c 100644 --- a/make/config/jogl/gl3-headers.cfg +++ b/make/config/jogl/gl3-headers.cfg @@ -15,7 +15,7 @@ CustomCCode #include <inttypes.h> CustomCCode #include <stdlib.h> CustomCCode #include <GL/glcorearb.h> CustomCCode #include <GL/glcorearbext.h> -CustomCCode #include </usr/include/machine/types.h> +CustomCCode #include <machine/types.h> CustomCCode /* Provide Windows typedefs */ CustomCCode typedef void* LPVOID; CustomCCode typedef unsigned int* PUINT; |