meson: include more build settings in status output

This commit is contained in:
Lennart Poettering 2018-10-05 16:38:42 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent afbae3e9f2
commit 19d8c9c9b7
1 changed files with 6 additions and 0 deletions

View File

@ -2981,6 +2981,10 @@ alt_time_epoch = run_command('date', '-Is', '-u', '-d',
status += [
'time epoch: @0@ (@1@)'.format(time_epoch, alt_time_epoch)]
status += [
'static libsystemd: @0@'.format(get_option('static-libsystemd')),
'static libudev: @0@'.format(get_option('static-libudev'))]
# TODO:
# CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
# CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
@ -3080,6 +3084,8 @@ foreach tuple : [
['debug mmap cache'],
['valgrind', conf.get('VALGRIND') == 1],
['trace logging', conf.get('LOG_TRACE') == 1],
['link-udev-shared', get_option('link-udev-shared')],
['link-systemctl-shared', get_option('link-systemctl-shared')],
]
if tuple.length() >= 2