don't include GL/gl.h, define GLAPIENTRYP if not defined
diff --git a/src/mesa/glapi/glapitable.h b/src/mesa/glapi/glapitable.h
index 305f71c..044c62c 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
 {