Mesa (master): gallium: remove dependency on main/glheader.h in glxapi.c

Brian Paul brianp at kemper.freedesktop.org
Sun Feb 22 22:39:35 UTC 2009


Module: Mesa
Branch: master
Commit: 022e446c78d294d70129c9e4293b5c7e444a3cbd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=022e446c78d294d70129c9e4293b5c7e444a3cbd

Author: Brian Paul <brianp at vmware.com>
Date:   Sun Feb 22 15:37:57 2009 -0700

gallium: remove dependency on main/glheader.h in glxapi.c

Only needed it for the PUBLIC macro.

---

 src/gallium/state_trackers/glx/xlib/glxapi.c |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/src/gallium/state_trackers/glx/xlib/glxapi.c b/src/gallium/state_trackers/glx/xlib/glxapi.c
index 1ff0480..c2cb34d 100644
--- a/src/gallium/state_trackers/glx/xlib/glxapi.c
+++ b/src/gallium/state_trackers/glx/xlib/glxapi.c
@@ -34,13 +34,21 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#include "main/glheader.h"
 #include "glapi/glapi.h"
 #include "glxapi.h"
 #include "fakeglx.h"
 #include "pipe/p_thread.h"
 
 
+#if defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 303
+#  define PUBLIC __attribute__((visibility("default")))
+#  define USED __attribute__((used))
+#else
+#  define PUBLIC
+#  define USED
+#endif
+
+
 struct display_dispatch {
    Display *Dpy;
    struct _glxapi_table *Table;




More information about the mesa-commit mailing list