[Mesa3d-dev] Patch to fix -m32 for progs/glsl

2010-02-25 Thread Török Edvin
Hi, I had to apply the following patch to build mesa as 32-bit, on a 64-bit Debian system (so that wine, and all else get proper 3D accelereration with the new r600 driver). progs/glsl is built by default, but it was not using -m32. Please apply the patch to mesa git master, it is a one-line

[Mesa3d-dev] [PATCH] Fix --enable-32-bit: honor -m32 for progs/glsl.

2010-02-25 Thread Török Edvin
--- progs/glsl/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index 8928c83..aaa54cb 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -16,7 +16,7 @@ LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLEW_LIB)

[Mesa3d-dev] [PATCH] Fix deadlock: _mesa_HashFindFreeKeyBlock has already locked the table.

2010-03-27 Thread Török Edvin
This fixes fdo bug 34502. Signed-off-by: Török Edvin edwinto...@gmail.com --- src/mesa/main/hash.c | 19 +-- 1 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/mesa/main/hash.c b/src/mesa/main/hash.c index 9757754..e9a9748 100644 --- a/src/mesa/main/hash.c

Re: [Mesa3d-dev] [PATCH] Fix build with --enable-32-bit. again.

2010-04-09 Thread Török Edvin
2010/4/9 Dan Nicholson dbn.li...@gmail.com: Good catch, although it really affects anyone that stores flags necessary to the linker in CFLAGS. Could you also fix the one in src/gallium/winsys/drm/Makefile.template from the same commit and repost the patch? Thanks. Will do that a bit later.