SHA256
1
0
forked from pool/Mesa

- Update to version 10.2.3

* Mesa 10.2.3 is a bug fix release which fixes bugs fixed since
    the 10.2.2 release
- obsoletes u_mesa-gallium-llvmpipe-fix-SIGFPE.patch

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=383
This commit is contained in:
Stefan Dirsch 2014-07-09 10:45:56 +00:00 committed by Git OBS Bridge
parent a8dbee14f2
commit f139a3cbb4
5 changed files with 13 additions and 32 deletions

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed Jul 9 09:04:35 UTC 2014 - sndirsch@suse.com
- Update to version 10.2.3
* Mesa 10.2.3 is a bug fix release which fixes bugs fixed since
the 10.2.2 release
- obsoletes u_mesa-gallium-llvmpipe-fix-SIGFPE.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 8 01:22:36 UTC 2014 - tobias.johannes.klausmann@mni.thm.de Sun Jun 8 01:22:36 UTC 2014 - tobias.johannes.klausmann@mni.thm.de

View File

@ -58,10 +58,10 @@
%endif %endif
%define _name_archive MesaLib %define _name_archive MesaLib
%define _version 10.2.1 %define _version 10.2.3
Name: Mesa Name: Mesa
Version: 10.2.1 Version: 10.2.3
Release: 0 Release: 0
BuildRequires: autoconf >= 2.60 BuildRequires: autoconf >= 2.60
BuildRequires: automake BuildRequires: automake
@ -149,8 +149,6 @@ Patch11: u_Fix-crash-in-swrast-when-setting-a-texture-for-a-pix.patch
Patch13: u_mesa-8.0.1-fix-16bpp.patch Patch13: u_mesa-8.0.1-fix-16bpp.patch
# Patch from Fedora, use shmget when available, under llvmpipe # Patch from Fedora, use shmget when available, under llvmpipe
Patch15: u_mesa-8.0-llvmpipe-shmget.patch Patch15: u_mesa-8.0-llvmpipe-shmget.patch
# to be upstreamed
Patch16: u_mesa-gallium-llvmpipe-fix-SIGFPE.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -516,7 +514,6 @@ rm -rf docs/README.{VMS,WIN32,OS2}
#%patch15 -p1 #%patch15 -p1
#%patch13 -p1 #%patch13 -p1
### ###
%patch16 -p1
%build %build
rm -f src/mesa/depend rm -f src/mesa/depend

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:461277909207da689d8152cfbf9e182ea6f70e1e672ab64c67df83725c8d2b54
size 7109792

3
MesaLib-10.2.3.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e482a96170c98b17d6aba0d6e4dda4b9a2e61c39587bb64ac38cadfa4aba4aeb
size 7127618

View File

@ -1,24 +0,0 @@
From: Takashi Iwai <tiwai@suse.de>
Subject: Fix zero-division in llvmpipe_texture_layout()
References: bnc#879462
Fix the crash of "gnome-control-center info" invocation on QEMU where
zero height is passed at init.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
src/gallium/drivers/llvmpipe/lp_texture.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/src/gallium/drivers/llvmpipe/lp_texture.c
+++ b/src/gallium/drivers/llvmpipe/lp_texture.c
@@ -115,7 +115,7 @@ llvmpipe_texture_layout(struct llvmpipe_
lpr->row_stride[level] = align(nblocksx * block_size, util_cpu_caps.cacheline);
/* if row_stride * height > LP_MAX_TEXTURE_SIZE */
- if (lpr->row_stride[level] > LP_MAX_TEXTURE_SIZE / nblocksy) {
+ if (nblocksy && lpr->row_stride[level] > LP_MAX_TEXTURE_SIZE / nblocksy) {
/* image too large */
goto fail;
}