firefox: Perform a number of cleanups and fix consistency issues.
[openembedded.git] / classes / glx-use-tls.bbclass
1 def get_tls_setting(bb, d):
2     # until we have no prober TLS support in uclibc disable it
3     if bb.data.getVar('TARGET_OS', d, 1).find('uclibc') >= 0 :
4         return ""
5     return "--enable-glx-tls"
6
7 EXTRA_OECONF += "${@get_tls_setting(bb, d)}"