don't include GL/gl.h, define GLAPIENTRYP if not defined
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 5 Dec 2003 00:46:06 +0000 (00:46 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 5 Dec 2003 00:46:06 +0000 (00:46 +0000)
src/mesa/glapi/glapitable.h
src/mesa/glapi/gltable.py

index 305f71c28dd6ba034062c715ce36395d28029450..044c62cffe7635c4fc8b96010f89d8fc19ebfe5f 100644 (file)
@@ -2,7 +2,9 @@
 #ifndef _GLAPI_TABLE_H_
 #define _GLAPI_TABLE_H_
 
-#include <GL/gl.h>
+#ifndef GLAPIENTRYP
+#define GLAPIENTRYP
+#endif
 
 struct _glapi_table
 {
index 8bd885f4696e99b91643bbe4b7ec674832c7dacc..dfa9d0e357094afac032f7d6e56a8b289f471d55 100644 (file)
@@ -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 '{'