Accepting request 181759 from X11:XOrg
Update to 9.1.4 (forwarded request 181754 from sumski) OBS-URL: https://build.opensuse.org/request/show/181759 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/Mesa?expand=0&rev=176
This commit is contained in:
commit
7eb5ca0afa
27
Mesa.changes
27
Mesa.changes
@ -1,3 +1,30 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 2 13:00:05 UTC 2013 - hrvoje.senjan@gmail.com
|
||||
|
||||
- Update to Mesa 9.1.4:
|
||||
* [bisected i965] Bus error (core dumped) on oglc texdecaltile
|
||||
(fdo#37871)
|
||||
* egl/opengles1/tri_x11 renders wrong (fdo#42182)
|
||||
* [SNB IVB HSW] mesa demo test texleak bus error (fdo#44958)
|
||||
* [snb] crash in texsubimage to a large atlas in clutter
|
||||
(fdo#53494)
|
||||
* glDrawElements segfault when compiled into display list
|
||||
(fdo#60518)
|
||||
* src/mesa/drivers/dri/common/xmlpool.h:96:29: fatal error:
|
||||
xmlpool/options.h (fdo#61821)
|
||||
* r300g regression (RV380): Strange rendering of light sources in
|
||||
Penumbra (bisected) (fdo#63520)
|
||||
* [HSW] support new haswell graphics [8086:0a2e] (fdo#63701)
|
||||
* [gm45, bisected] some piglit glsl 1.10 built-in-functions tests
|
||||
crash (fdo#64727)
|
||||
* [llvmpipe] SIGSEGV src/gallium/state_trackers/glx/xlib/glx_api.c:1374
|
||||
(fdo#64745)
|
||||
* [llvmpipe] SIGSEGV src/gallium/state_trackers/glx/xlib/glx_api.c:1363
|
||||
(fdo#64934)
|
||||
* segfault in _mesa_get_format_datatype and _mesa_get_color_read_type
|
||||
when state dumping with glretrace (fdo#65173)
|
||||
- Droped llvm-3.3.patch, it's included in this release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 28 14:57:52 UTC 2013 - mhrusecky@suse.com
|
||||
|
||||
|
@ -17,11 +17,11 @@
|
||||
|
||||
|
||||
%define glamor 1
|
||||
%define _version 9.1.3
|
||||
%define _version 9.1.4
|
||||
%define _name_archive MesaLib
|
||||
|
||||
Name: Mesa
|
||||
Version: 9.1.3
|
||||
Version: 9.1.4
|
||||
Release: 0
|
||||
BuildRequires: autoconf >= 2.60
|
||||
BuildRequires: automake
|
||||
@ -96,7 +96,6 @@ Patch13: u_mesa-8.0.1-fix-16bpp.patch
|
||||
Patch14: u_mesa-glapi_dispatch.patch
|
||||
# Patch from Fedora, use shmget when available, under llvmpipe
|
||||
Patch15: u_mesa-8.0-llvmpipe-shmget.patch
|
||||
Patch16: llvm-3.3.patch
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
@ -526,7 +525,6 @@ rm -rf docs/README.{VMS,WIN32,OS2}
|
||||
%patch13 -p1
|
||||
%patch14 -p1
|
||||
%patch15 -p1
|
||||
%patch16
|
||||
|
||||
%build
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d5dac2202d0355bff5cfd183582ec8167d1d1227b7bb7a669acecbeaa52d766
|
||||
size 6123010
|
3
MesaLib-9.1.4.tar.bz2
Normal file
3
MesaLib-9.1.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6e858786e9e68e79aa245037d351a664f3a5c05ccdbdc2519307bc06f8ee68da
|
||||
size 6124177
|
@ -1,39 +0,0 @@
|
||||
From 4742f9b00b804dd01eb9955dd386a2373cd8eb36 Mon Sep 17 00:00:00 2001
|
||||
From: Armin K <krejzi@email.com>
|
||||
Date: Thu, 02 May 2013 10:55:04 +0000
|
||||
Subject: gallivm: Fix build with LLVM 3.3
|
||||
|
||||
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
|
||||
---
|
||||
Index: src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
||||
===================================================================
|
||||
--- src/gallium/auxiliary/gallivm/lp_bld_misc.cpp.orig
|
||||
+++ src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
||||
@@ -60,6 +60,12 @@
|
||||
#include <llvm/Target/TargetSelect.h>
|
||||
#endif /* HAVE_LLVM < 0x0300 */
|
||||
|
||||
+#if HAVE_LLVM >= 0x0303
|
||||
+#include <llvm/IR/IRBuilder.h>
|
||||
+#include <llvm/IR/Module.h>
|
||||
+#include <llvm/Support/CBindingWrapping.h>
|
||||
+#endif
|
||||
+
|
||||
#include "pipe/p_config.h"
|
||||
#include "util/u_debug.h"
|
||||
#include "util/u_cpu_detect.h"
|
||||
Index: src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
|
||||
===================================================================
|
||||
--- src/gallium/auxiliary/gallivm/lp_bld_debug.cpp.orig
|
||||
+++ src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
|
||||
@@ -55,6 +55,10 @@
|
||||
#include <llvm/MC/MCRegisterInfo.h>
|
||||
#endif /* HAVE_LLVM >= 0x0301 */
|
||||
|
||||
+#if HAVE_LLVM >= 0x0303
|
||||
+#include <llvm/ADT/OwningPtr.h>
|
||||
+#endif
|
||||
+
|
||||
#include "util/u_math.h"
|
||||
#include "util/u_debug.h"
|
||||
|
Loading…
Reference in New Issue
Block a user