]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: include more build settings in status output
authorLennart Poettering <lennart@poettering.net>
Fri, 5 Oct 2018 14:38:42 +0000 (16:38 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 9 Oct 2018 13:42:40 +0000 (15:42 +0200)
meson.build

index 554e67e5dd0c1f571eedec9d9ad0c5019f8f0d63..1d5a4f924e7379a89da4cec26eed1caba35bc768 100644 (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