summaryrefslogtreecommitdiff
path: root/package/MesaLib/patches/patch-src_mesa_Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-04 23:37:45 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-04 23:37:45 +0100
commit4c93c2e27f98e0c00a101bc8b7df20b12d82f8b9 (patch)
tree99709b9aa902e83034b50c3847b064a989b1a3af /package/MesaLib/patches/patch-src_mesa_Makefile
parentb267f52a72cee7753e6ad29698f55f85d74b22d2 (diff)
fix compile on Darwin
Diffstat (limited to 'package/MesaLib/patches/patch-src_mesa_Makefile')
-rw-r--r--package/MesaLib/patches/patch-src_mesa_Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/package/MesaLib/patches/patch-src_mesa_Makefile b/package/MesaLib/patches/patch-src_mesa_Makefile
new file mode 100644
index 000000000..35869314b
--- /dev/null
+++ b/package/MesaLib/patches/patch-src_mesa_Makefile
@@ -0,0 +1,21 @@
+--- Mesa-7.8.2.orig/src/mesa/Makefile 2010-06-15 19:43:42.000000000 +0200
++++ Mesa-7.8.2/src/mesa/Makefile 2010-12-04 22:11:40.000000000 +0100
+@@ -30,15 +30,15 @@ default: depend asm_subdirs glsl_builtin
+
+ # Make archive of core mesa object files
+ libmesa.a: $(MESA_OBJECTS) $(GLSL_LIBS)
+- @ $(MKLIB) -o mesa -static $(MESA_OBJECTS) $(GLSL_LIBS)
++ $(MKLIB) -o mesa -static $(MESA_OBJECTS) $(GLSL_LIBS)
+
+ # Make archive of subset of core mesa object files for gallium
+ libmesagallium.a: $(MESA_GALLIUM_OBJECTS) $(GLSL_LIBS)
+- @ $(MKLIB) -o mesagallium -static $(MESA_GALLIUM_OBJECTS) $(GLSL_LIBS)
++ $(MKLIB) -o mesagallium -static $(MESA_GALLIUM_OBJECTS) $(GLSL_LIBS)
+
+ # Make archive of gl* API dispatcher functions only
+ libglapi.a: $(GLAPI_OBJECTS)
+- @ $(MKLIB) -o glapi -static $(GLAPI_OBJECTS)
++ $(MKLIB) -o glapi -static $(GLAPI_OBJECTS)
+
+ ######################################################################
+ # Device drivers