mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
e5ea741c62
Priority is 80. At least in Fedora, chrony uses 50, and ntpd 60. timesyncd has lower priority, because if people install those other packages, it's most likely on purpose. timesyncd is always installed and provides less functionality.
54 lines
1.7 KiB
Meson
54 lines
1.7 KiB
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
systemd_timesyncd_sources = files('''
|
|
timesyncd.c
|
|
timesyncd-bus.c
|
|
timesyncd-bus.h
|
|
timesyncd-conf.c
|
|
timesyncd-conf.h
|
|
timesyncd-manager.c
|
|
timesyncd-manager.h
|
|
timesyncd-ntp-message.h
|
|
timesyncd-server.c
|
|
timesyncd-server.h
|
|
'''.split())
|
|
|
|
timesyncd_gperf_c = custom_target(
|
|
'timesyncd-gperf.c',
|
|
input : 'timesyncd-gperf.gperf',
|
|
output : 'timesyncd-gperf.c',
|
|
command : [gperf, '@INPUT@', '--output-file', '@OUTPUT@'])
|
|
|
|
systemd_timesyncd_sources += [timesyncd_gperf_c]
|
|
|
|
if conf.get('ENABLE_TIMESYNCD') == 1
|
|
timesyncd_conf = configure_file(
|
|
input : 'timesyncd.conf.in',
|
|
output : 'timesyncd.conf',
|
|
configuration : substs)
|
|
install_data(timesyncd_conf,
|
|
install_dir : pkgsysconfdir)
|
|
install_data('org.freedesktop.timesync1.conf',
|
|
install_dir : dbuspolicydir)
|
|
install_data('org.freedesktop.timesync1.service',
|
|
install_dir : dbussystemservicedir)
|
|
install_data('80-systemd-timesync.list',
|
|
install_dir : ntpservicelistdir)
|
|
endif
|
|
|
|
############################################################
|
|
|
|
tests += [
|
|
[['src/timesync/test-timesync.c',
|
|
'src/timesync/timesyncd-manager.c',
|
|
'src/timesync/timesyncd-manager.h',
|
|
'src/timesync/timesyncd-conf.c',
|
|
'src/timesync/timesyncd-conf.h',
|
|
'src/timesync/timesyncd-server.c',
|
|
'src/timesync/timesyncd-server.h',
|
|
timesyncd_gperf_c],
|
|
[libshared],
|
|
[libm],
|
|
'ENABLE_TIMESYNCD'],
|
|
]
|