[arch-commits] Commit in kinfocenter/trunk (PKGBUILD fix-opengl-freeze.patch)

Antonio Rojas arojas at archlinux.org
Thu Jul 23 06:12:19 UTC 2015


    Date: Thursday, July 23, 2015 @ 08:12:18
  Author: arojas
Revision: 242459

Fix freeze in OpenGL module (FS#45749)

Added:
  kinfocenter/trunk/fix-opengl-freeze.patch
Modified:
  kinfocenter/trunk/PKGBUILD

-------------------------+
 PKGBUILD                |   13 +++++++++----
 fix-opengl-freeze.patch |   33 +++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2015-07-23 04:23:07 UTC (rev 242458)
+++ PKGBUILD	2015-07-23 06:12:18 UTC (rev 242459)
@@ -5,7 +5,7 @@
 
 pkgname=kinfocenter
 pkgver=5.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A utility that provides information about a computer system'
 arch=('i686' 'x86_64')
 url='https://www.kde.org/applications/system/kinfocenter/'
@@ -15,13 +15,18 @@
 conflicts=('kdebase-workspace')
 groups=('plasma')
 source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz" 
-'archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-dark-scalable.svg' 'kcm-about-distrorc')
+'archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-dark-scalable.svg' 'kcm-about-distrorc' 'fix-opengl-freeze.patch')
 md5sums=('baf95f4bd09e886f3d25b5f2799cf2d8'
          '518881f04ca9d4bd8526008767e40ba7'
-         '4b4e2496ea1de3a09de501b5d508f666')
+         '4b4e2496ea1de3a09de501b5d508f666'
+         '5f2f0db6fec3f6dcd0857122918a0e3d')
 
 prepare() {
-  mkdir build
+  mkdir -p build
+
+# Fix freeze in OpenGL module https://bugs.kde.org/show_bug.cgi?id=344971
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/fix-opengl-freeze.patch
 }
 
 build() {

Added: fix-opengl-freeze.patch
===================================================================
--- fix-opengl-freeze.patch	                        (rev 0)
+++ fix-opengl-freeze.patch	2015-07-23 06:12:18 UTC (rev 242459)
@@ -0,0 +1,33 @@
+From: Martin Gräßlin <mgraesslin at kde.org>
+Date: Wed, 03 Jun 2015 15:37:28 +0000
+Subject: Remove querying the indirect rendering context
+X-Git-Url: http://quickgit.kde.org/?p=kinfocenter.git&a=commitdiff&h=9f9814219d899a64dd5b68711534ec7206858147
+---
+Remove querying the indirect rendering context
+
+Mesa fails to make an indirect rendering context current and freezes
+in the next X11 call.
+
+Removing indirect rendering support seems like a workaround for the
+problem, but realisticly it's no longer interesting what indirect
+rendering provides if direct rendering is available. If direct
+rendering is not available, it will pick indirect instead.
+
+BUG: 344971
+FIXED-IN: 5.4.0
+REVIEW: 123995
+---
+
+
+--- a/Modules/opengl/opengl.cpp
++++ b/Modules/opengl/opengl.cpp
+@@ -933,8 +933,6 @@
+ 
+             l2 = get_gl_info_glx(dpy, scrnum, true, l1, l2);
+             if (l2) l2->setExpanded(true);
+-
+-            if (IsDirect) l2 = get_gl_info_glx(dpy, scrnum, false, l1, l2);
+ #endif
+ #if KCM_HAVE_EGL
+             l2 = get_gl_info_egl(dpy, scrnum, l1, l2);
+



More information about the arch-commits mailing list