mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
89500c583e
* tested on shr-lite-image for om-gta02 and nokia900 (with meta-shr layer)
8 lines
248 B
Plaintext
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)}"
|