meson: correctly display enabled features

In 9cf75222f2 the conf.get() statements for `bpf-framework` and
`valgrind` were dropped, which causes the respective features to always
show as disabled (since they don't follow the "standard" naming scheme
with HAVE_/ENABLE_ prefixes).
This commit is contained in:
Frantisek Sumsal 2021-12-02 18:42:31 +01:00 committed by Luca Boccassi
parent 68ee5d774c
commit ff7e7c2b3a

View file

@ -3923,7 +3923,7 @@ foreach tuple : [
# components
['backlight'],
['binfmt'],
['bpf-framework'],
['bpf-framework', conf.get('BPF_FRAMEWORK') == 1],
['coredump'],
['environment.d'],
['efi'],
@ -3984,7 +3984,7 @@ foreach tuple : [
['debug hashmap'],
['debug mmap cache'],
['debug siphash'],
['valgrind'],
['valgrind', conf.get('VALGRIND') == 1],
['trace logging', conf.get('LOG_TRACE') == 1],
['install tests', install_tests],
['link-udev-shared', get_option('link-udev-shared')],