glx: minor cosmetic in glcontextmodes.c
authorGeorge Sapountzis <gsap7@yahoo.gr>
Thu, 5 Apr 2007 16:00:47 +0000 (19:00 +0300)
committerGeorge Sapountzis <gsap7@yahoo.gr>
Thu, 5 Apr 2007 16:00:47 +0000 (19:00 +0300)
move memory macros to separate block and unwrap malloc/free for miniglx towards
cleaning Mesa core glitches in glx...

src/glx/x11/glcontextmodes.c

index edb04463f6162fdafa7632d2152c9b4e200342b4..c16518490315923d563210025f95fc5e7f39c541 100644 (file)
  * \author Ian Romanick <idr@us.ibm.com>
  */
 
+#if defined(IN_MINI_GLX)
+#include <GL/gl.h>
+#else
+#if defined(HAVE_DIX_CONFIG_H)
+# include <dix-config.h>
+#endif
+#include <X11/X.h>
+#include <GL/glx.h>
+#include "GL/glxint.h"
+#endif
+
+/* Memory macros */
 #if defined(IN_MINI_GLX)
 # include <stdlib.h>
 # include <string.h>
-# include <GL/gl.h>
-# include "GL/internal/dri_interface.h"
-# include "imports.h"
+# define _mesa_malloc(b) malloc(b)
+# define _mesa_free(m) free(m)
 # define _mesa_memset  memset
 #else
-# if defined(HAVE_DIX_CONFIG_H)
-#  include <dix-config.h>
-# endif
-# include <X11/X.h>
-# include <GL/glx.h>
-# include "GL/glxint.h"
-
 # ifdef XFree86Server
 # include <os.h>
 # include <string.h>