mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
meson: output one "item" for DNS-over-TLS
This commit is contained in:
parent
56d68e715b
commit
237f2da9d4
10
meson.build
10
meson.build
@ -3824,8 +3824,6 @@ foreach tuple : [
|
|||||||
['xdg-autostart'],
|
['xdg-autostart'],
|
||||||
|
|
||||||
# optional features
|
# 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'],
|
['idn'],
|
||||||
['polkit'],
|
['polkit'],
|
||||||
['nscd'],
|
['nscd'],
|
||||||
@ -3884,6 +3882,14 @@ else
|
|||||||
found += 'static-libudev(@0@)'.format(static_libudev)
|
found += 'static-libudev(@0@)'.format(static_libudev)
|
||||||
endif
|
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 += [
|
status += [
|
||||||
'',
|
'',
|
||||||
'enabled features: @0@'.format(', '.join(found)),
|
'enabled features: @0@'.format(', '.join(found)),
|
||||||
|
Loading…
Reference in New Issue
Block a user