Accepting request 515319 from X11:XOrg
- n_glesv2.pc-Add-lGL-for-libglvnd-builds-boo-1052776.patch glesv2.pc: Add "-lGL" for libglvnd builds (boo#1052776) - update to 17.1.6 * fdo#97957 - Awful screen tearing in a separate X server with DRI3 * fdo#101683 - Some games hang while loading when compositing is shut off or absent * fdo#101867 - Launch options window renders black in Feral Games in current Mesa trunk * and some other fixes as usualy OBS-URL: https://build.opensuse.org/request/show/515319 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/Mesa?expand=0&rev=297
This commit is contained in:
commit
ee1b943a4b
17
Mesa.changes
17
Mesa.changes
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 8 14:12:45 UTC 2017 - sndirsch@suse.com
|
||||
|
||||
- n_glesv2.pc-Add-lGL-for-libglvnd-builds-boo-1052776.patch
|
||||
glesv2.pc: Add "-lGL" for libglvnd builds (boo#1052776)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 7 19:13:20 UTC 2017 - mimi.vx@gmail.com
|
||||
|
||||
- update to 17.1.6
|
||||
* fdo#97957 - Awful screen tearing in a separate X server with DRI3
|
||||
* fdo#101683 - Some games hang while loading when compositing is shut
|
||||
off or absent
|
||||
* fdo#101867 - Launch options window renders black in Feral Games
|
||||
in current Mesa trunk
|
||||
* and some other fixes as usualy
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 17 07:20:51 UTC 2017 - msrb@suse.com
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
%endif
|
||||
%define glamor 1
|
||||
%define _name_archive mesa
|
||||
%define _version 17.1.5
|
||||
%define _version 17.1.6
|
||||
%define with_opencl 0
|
||||
%define with_vulkan 0
|
||||
%ifarch %ix86 x86_64 %arm aarch64 ppc ppc64 ppc64le s390x
|
||||
@ -54,7 +54,7 @@
|
||||
%endif
|
||||
|
||||
Name: Mesa
|
||||
Version: 17.1.5
|
||||
Version: 17.1.6
|
||||
Release: 0
|
||||
Summary: System for rendering interactive 3-D graphics
|
||||
License: MIT
|
||||
@ -84,6 +84,7 @@ Patch21: n_Define-GLAPIVAR-separate-from-GLAPI.patch
|
||||
# currently needed for libglvnd support
|
||||
Patch31: archlinux_0001-Fix-linkage-against-shared-glapi.patch
|
||||
Patch32: archlinux_glvnd-fix-gl-dot-pc.patch
|
||||
Patch33: n_glesv2.pc-Add-lGL-for-libglvnd-builds-boo-1052776.patch
|
||||
Patch40: u_gallivm-correct-channel-shift-logic-on-big-endian.patch
|
||||
Patch41: u_llvmpipe-lp_build_gather_elem_vec-BE-fix-for-3x16-lo.patch
|
||||
Patch42: u_r600-Add-support-for-B5G5R5A1.patch
|
||||
@ -656,6 +657,7 @@ rm -rf docs/README.{VMS,WIN32,OS2}
|
||||
%if 0%{?libglvnd}
|
||||
%patch31 -p1
|
||||
%patch32 -p1
|
||||
%patch33 -p1
|
||||
%endif
|
||||
|
||||
%patch40 -p1
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:378516b171712687aace4c7ea8b37c85895231d7a6d61e1e27362cf6034fded9
|
||||
size 9901876
|
Binary file not shown.
3
mesa-17.1.6.tar.xz
Normal file
3
mesa-17.1.6.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0686deadde1f126b20aa67e47e8c50502043eee4ecdf60d5009ffda3cebfee50
|
||||
size 9868932
|
BIN
mesa-17.1.6.tar.xz.sig
Normal file
BIN
mesa-17.1.6.tar.xz.sig
Normal file
Binary file not shown.
25
n_glesv2.pc-Add-lGL-for-libglvnd-builds-boo-1052776.patch
Normal file
25
n_glesv2.pc-Add-lGL-for-libglvnd-builds-boo-1052776.patch
Normal file
@ -0,0 +1,25 @@
|
||||
From 1902aaa97ec2d7919cc48dcde2b6ca165ca00a2f Mon Sep 17 00:00:00 2001
|
||||
From: Stefan Dirsch <sndirsch@suse.de>
|
||||
Date: Tue, 8 Aug 2017 16:07:46 +0200
|
||||
Subject: [PATCH glx/glxglvnd] glesv2.pc: Add "-lGL" for libglvnd builds
|
||||
(boo#1052776)
|
||||
|
||||
---
|
||||
src/mapi/es2api/glesv2.pc.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/mapi/es2api/glesv2.pc.in b/src/mapi/es2api/glesv2.pc.in
|
||||
index e5bf12f878..8b5fb84fd8 100644
|
||||
--- a/src/mapi/es2api/glesv2.pc.in
|
||||
+++ b/src/mapi/es2api/glesv2.pc.in
|
||||
@@ -7,6 +7,6 @@ Name: glesv2
|
||||
Description: Mesa OpenGL ES 2.0 library
|
||||
Requires.private:
|
||||
Version: @VERSION@
|
||||
-Libs: -L${libdir} -lGLESv2
|
||||
+Libs: -L${libdir} -lGLESv2 -lGL
|
||||
Libs.private: @GLESv2_PC_LIB_PRIV@
|
||||
Cflags: -I${includedir}
|
||||
--
|
||||
2.13.1
|
||||
|
Loading…
Reference in New Issue
Block a user