meta-openembedded/meta-oe/classes/glx-use-tls.bbclass
Martin Jansa 89500c583e recipes,classes: import a lot of recipes from meta-shr
* tested on shr-lite-image for om-gta02 and nokia900 (with meta-shr layer)
2011-04-10 14:43:41 +02:00

8 lines
248 B
Plaintext

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