diff --git a/meson.build b/meson.build index 8a11e09189..bf9b343090 100644 --- a/meson.build +++ b/meson.build @@ -3824,8 +3824,6 @@ foreach tuple : [ ['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'], @@ -3884,6 +3882,14 @@ else 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)),