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:
Martin Jansa
2011-10-04 14:15:28 +02:00
committed by Richard Purdie
parent a4cbf47114
commit a87ee718f9

View 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)}"