From: Lennart Poettering Date: Fri, 5 Oct 2018 14:38:42 +0000 (+0200) Subject: meson: include more build settings in status output X-Git-Tag: v240~579^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19d8c9c9b7b3507eb2fdcf668a85456a4ae0dbeb;p=thirdparty%2Fsystemd.git meson: include more build settings in status output --- diff --git a/meson.build b/meson.build index 554e67e5dd0..1d5a4f924e7 100644 --- a/meson.build +++ b/meson.build @@ -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