mirror of
https://github.com/systemd/systemd.git
synced 2025-01-09 01:18:19 +03:00
meson: fold static libsystemd and libudev into the generic status line
It's a very specialized feature and we don't need to devote a separate line to it.
This commit is contained in:
parent
ba081955fc
commit
c716c2537f
16
meson.build
16
meson.build
@ -3724,10 +3724,6 @@ 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(static_libsystemd),
|
||||
'static libudev: @0@'.format(static_libudev)]
|
||||
|
||||
# TODO:
|
||||
# CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
|
||||
# CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
|
||||
@ -3869,6 +3865,18 @@ foreach tuple : [
|
||||
endif
|
||||
endforeach
|
||||
|
||||
if static_libsystemd == 'false'
|
||||
missing += 'static-libsystemd'
|
||||
else
|
||||
found += 'static-libsystemd(@0@)'.format(static_libsystemd)
|
||||
endif
|
||||
|
||||
if static_libudev == 'false'
|
||||
missing += 'static-libudev'
|
||||
else
|
||||
found += 'static-libudev(@0@)'.format(static_libudev)
|
||||
endif
|
||||
|
||||
status += [
|
||||
'',
|
||||
'enabled features: @0@'.format(', '.join(found)),
|
||||
|
Loading…
Reference in New Issue
Block a user