diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-12 15:00:40 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-12 15:00:40 +0000 |
commit | f8b4641fcb29e11d4142e990427a6066ff693f41 (patch) | |
tree | 4f9bc3b73f390a627de3ebbb6e118c02762137f1 | |
parent | 392b3313826b012aea4f490abe73d00e01090fbf (diff) | |
download | aports-f8b4641fcb29e11d4142e990427a6066ff693f41.tar.bz2 aports-f8b4641fcb29e11d4142e990427a6066ff693f41.tar.xz |
main/mesa: disable glx tls
The glx tls causes segfault with musl libc:
https://bugs.freedesktop.org/show_bug.cgi?id=35268
The glx tls is there for performance reasons that only affects glibc. On
musl libc it should not make any difference so we simply disable it.
-rw-r--r-- | main/mesa/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/mesa/APKBUILD b/main/mesa/APKBUILD index 931dcb2e85..b6cf630a4b 100644 --- a/main/mesa/APKBUILD +++ b/main/mesa/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=mesa pkgver=10.5.5 -pkgrel=0 +pkgrel=1 pkgdesc="Mesa DRI OpenGL library" url="http://www.mesa3d.org" arch="all" @@ -78,7 +78,7 @@ build() { --with-egl-platforms=x11,drm,wayland \ --enable-shared-glapi \ --enable-gbm \ - --enable-glx-tls \ + --disable-glx-tls \ --enable-dri \ --enable-glx \ --enable-osmesa \ |