['xdg-autostart'],
# optional features
- ['DNS-over-TLS(gnutls)', conf.get('DNS_OVER_TLS_USE_GNUTLS') == 1],
- ['DNS-over-TLS(openssl)', conf.get('DNS_OVER_TLS_USE_OPENSSL') == 1],
['idn'],
['polkit'],
['nscd'],
found += 'static-libudev(@0@)'.format(static_libudev)
endif
+if conf.get('DNS_OVER_TLS_USE_GNUTLS') == 1
+ found += 'DNS-over-TLS(gnutls)'
+elif conf.get('DNS_OVER_TLS_USE_OPENSSL') == 1
+ found += 'DNS-over-TLS(openssl)'
+else
+ missing += 'DNS-over-TLS'
+endif
+
status += [
'',
'enabled features: @0@'.format(', '.join(found)),