mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-08-16 01:38:14 +02:00
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)}"
|