aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch')
-rw-r--r--nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch b/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch
new file mode 100644
index 000000000..4f6803730
--- /dev/null
+++ b/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch
@@ -0,0 +1,28 @@
+Description: Turn glx_ansic.h into a no-op include. (by using memset, malloc, free directly)
+Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
+
+Index: Mesa/src/mesa/drivers/dri/common/glcontextmodes.c
+===================================================================
+--- Mesa.orig/src/mesa/drivers/dri/common/glcontextmodes.c
++++ Mesa/src/mesa/drivers/dri/common/glcontextmodes.c
+@@ -48,15 +48,14 @@
+
+ # ifdef XFree86Server
+ # include "GL/glx_ansic.h"
+-extern void * __glXMalloc( size_t size );
+-extern void __glXFree( void * ptr );
+-# define _mesa_malloc(b) __glXMalloc(b)
+-# define _mesa_free(m) __glXFree(m)
++# define __glXMemset memset
++# define _mesa_malloc(b) malloc(b)
++# define _mesa_free(m) free(m)
+ # else
+ # include <X11/Xlibint.h>
+ # define __glXMemset memset
+-# define _mesa_malloc(b) Xmalloc(b)
+-# define _mesa_free(m) Xfree(m)
++# define _mesa_malloc(b) malloc(b)
++# define _mesa_free(m) free(m)
+ # endif /* XFree86Server */
+ #endif /* !defined(IN_MINI_GLX) */
+