diff options
author | Brian Paul <[email protected]> | 2003-12-05 00:46:06 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-12-05 00:46:06 +0000 |
commit | dd7f735f5318735752c2c82d33eb7fb9148c5348 (patch) | |
tree | 8468df3ed8da4634e9cf398578e8016269ad17ab /src/mesa/glapi | |
parent | a6ad01c14e8b7d819783d81c1febfa8e72063bf3 (diff) |
don't include GL/gl.h, define GLAPIENTRYP if not defined
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/glapitable.h | 4 | ||||
-rw-r--r-- | src/mesa/glapi/gltable.py | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/src/mesa/glapi/glapitable.h b/src/mesa/glapi/glapitable.h index 305f71c28dd..044c62cffe7 100644 --- a/src/mesa/glapi/glapitable.h +++ b/src/mesa/glapi/glapitable.h @@ -2,7 +2,9 @@ #ifndef _GLAPI_TABLE_H_ #define _GLAPI_TABLE_H_ -#include <GL/gl.h> +#ifndef GLAPIENTRYP +#define GLAPIENTRYP +#endif struct _glapi_table { diff --git a/src/mesa/glapi/gltable.py b/src/mesa/glapi/gltable.py index 8bd885f4696..dfa9d0e3570 100644 --- a/src/mesa/glapi/gltable.py +++ b/src/mesa/glapi/gltable.py @@ -2,9 +2,9 @@ # Mesa 3-D graphics library -# Version: 4.1 +# Version: 5.1 # -# Copyright (C) 1999-2001 Brian Paul All Rights Reserved. +# Copyright (C) 1999-2003 Brian Paul All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), @@ -27,7 +27,7 @@ # Generate the glapitable.h file. # # Usage: -# gloffsets.py >glapitable.h +# python gloffsets.py >glapitable.h # # Dependencies: # The apispec file must be in the current directory. @@ -41,7 +41,9 @@ def PrintHead(): print '#ifndef _GLAPI_TABLE_H_' print '#define _GLAPI_TABLE_H_' print '' - print '#include <GL/gl.h>' + print '#ifndef GLAPIENTRYP' + print '#define GLAPIENTRYP' + print '#endif' print '' print 'struct _glapi_table' print '{' |