diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2014-06-04 16:17:14 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2014-06-04 16:17:14 +0400 |
commit | 1eb32184a5411430fb290d1122bcbe63953cd052 (patch) | |
tree | 10c6ea408bf0554c863cb9cec48c47c1fd2a3f7a | |
parent | 49aafba8e0eaffb05286bb739bef0587319643cd (diff) | |
download | mesa-1eb32184a5411430fb290d1122bcbe63953cd052.tar.gz |
Disable TLS on illumos-amd64 (libglapi.so cannot be dlopened)
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 7085e51a0e..c0ebd7bac6 100755 --- a/debian/rules +++ b/debian/rules @@ -60,6 +60,7 @@ GALLIUM_DRIVERS = EGL_DISPLAYS = x11 confflags_DRI3 = --disable-dri3 +confflags_TLS = --enable-glx-tls # hurd doesn't do direct rendering ifeq ($(DEB_HOST_ARCH_OS), hurd) @@ -124,6 +125,7 @@ confflags_GALLIUM += --with-gallium-drivers="$(GALLIUM_DRIVERS)" ifeq (illumos-amd64,$(DEB_HOST_ARCH)) confflags_OPENVG = --disable-openvg --disable-gallium-egl confflags_GALLIUM += --with-gallium-drivers= +confflags_TLS = --disable-glx-tls DRI_DRIVERS = i915 i965 r200 radeon swrast endif @@ -133,11 +135,11 @@ confflags-dri = \ --with-dri-driverdir=/usr/lib/$(DEB_HOST_MULTIARCH)/dri \ --with-dri-searchpath='/usr/lib/$(DEB_HOST_MULTIARCH)/dri:\$$$${ORIGIN}/dri:/usr/lib/dri' \ --enable-osmesa \ - --enable-glx-tls \ --enable-shared-glapi \ --enable-texture-float \ --enable-xa \ --disable-xvmc \ + $(confflags_TLS) \ $(confflags_DIRECT_RENDERING) \ $(confflags_DRI3) \ $(confflags_EGL) \ |