changeset 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents cb17f5f87a0f
children 6777c50b3249
files dist-files.mk src/mesa-2-uninitalized.patch src/mesa.mk
diffstat 3 files changed, 2 insertions(+), 36 deletions(-) [+]
line wrap: on
line diff
--- a/dist-files.mk	Thu Aug 26 17:54:30 2021 +0200
+++ b/dist-files.mk	Thu Sep 16 22:37:45 2021 +0200
@@ -339,7 +339,6 @@
   matio.mk \
   mdbtools.mk \
   mesa-1-meson.patch \
-  mesa-2-uninitalized.patch \
   mesa-proto.mk \
   mesa.mk \
   mingw-blas-1-xerbla.patch \
--- a/src/mesa-2-uninitalized.patch	Thu Aug 26 17:54:30 2021 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-diff -ur mesa-21.0.3.orig/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c mesa-21.0.3/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
---- mesa-21.0.3.orig/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c	2021-05-20 18:45:28.645574035 -0400
-+++ mesa-21.0.3/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c	2021-05-20 18:50:13.771317137 -0400
-@@ -305,7 +305,7 @@
-    LLVMBuilderRef builder = mask->bld->gallivm->builder;
-    struct function_ctx *ctx = func_ctx(mask);
- 
--   int default_exec_pc;
-+   int default_exec_pc = 0;
-    boolean default_is_last;
- 
-    if (ctx->switch_stack_size > LP_MAX_TGSI_NESTING) {
-diff -ur mesa-21.0.3.orig/src/util/u_string.h mesa-21.0.3/src/util/u_string.h
---- mesa-21.0.3.orig/src/util/u_string.h	2021-05-20 18:45:28.898588502 -0400
-+++ mesa-21.0.3/src/util/u_string.h	2021-05-25 08:35:19.002123122 -0400
-@@ -42,6 +42,8 @@
- #include <stddef.h>
- #include <stdarg.h>
- #include <string.h>
-+#include <limits.h>
-+
- 
- #include "util/macros.h" // PRINTFLIKE
- 
-@@ -72,7 +74,7 @@
- {
-    va_list ap;
-    va_start(ap, format);
--   vsnprintf(str, (size_t)-1, format, ap);
-+   vsnprintf(str, INT_MAX, format, ap);
-    va_end(ap);
- }
- 
--- a/src/mesa.mk	Thu Aug 26 17:54:30 2021 +0200
+++ b/src/mesa.mk	Thu Sep 16 22:37:45 2021 +0200
@@ -2,8 +2,8 @@
 # See index.html for further information.
 
 PKG             := mesa
-$(PKG)_VERSION  := 21.0.3
-$(PKG)_CHECKSUM := e97b6bba3f6223668bf37a6bdea9dca5859470b4
+$(PKG)_VERSION  := 21.1.8
+$(PKG)_CHECKSUM := bb184edbff2f7e9f1705532349a49bd1f53cb631
 $(PKG)_SUBDIR   := mesa-$($(PKG)_VERSION)
 $(PKG)_FILE     := mesa-$($(PKG)_VERSION).tar.xz
 $(PKG)_URL      := ftp://ftp.freedesktop.org/pub/mesa/$($(PKG)_FILE)