mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
glx-use-tls.inc: add include file to enable glx-tls only when TARGET_OS isn't uclibc
* will be used in mesa-common.inc and xserver-xorg.inc * based on mesa-tls.inc (glx-use-tls.bbclass) from http://git.openembedded.org/cgit.cgi/openembedded/commit/packages/mesa/mesa-tls.inc?id=b527d8f723c98c77f2f5c5358062e5348493d767 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a4cbf47114
commit
a87ee718f9
7
meta/recipes-graphics/mesa/glx-use-tls.inc
Normal file
7
meta/recipes-graphics/mesa/glx-use-tls.inc
Normal file
@@ -0,0 +1,7 @@
|
||||
def get_tls_setting(bb, d):
|
||||
# until we have no prober TLS support in uclibc disable it
|
||||
if bb.data.getVar('TARGET_OS', d, 1).find('uclibc') >= 0 :
|
||||
return ""
|
||||
return "--enable-glx-tls"
|
||||
|
||||
EXTRA_OECONF += "${@get_tls_setting(bb, d)}"
|
||||
Reference in New Issue
Block a user