mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
30308e35fa
The logind provider defaulted to systemd and in order to use elogind, -Dlogin-provider=elogind was required. This adds 'auto' as a choice for the login-provider option and sets it as default. Using 'auto', the build will check for systemd first and if it's not found, try to find and use elogind automatically.
84 lines
2.1 KiB
Meson
84 lines
2.1 KiB
Meson
wlr_files += files(
|
|
'direct-ipc.c',
|
|
'noop.c',
|
|
'session.c',
|
|
)
|
|
|
|
if host_machine.system().startswith('freebsd')
|
|
wlr_files += files('direct-freebsd.c')
|
|
else
|
|
wlr_files += files('direct.c')
|
|
endif
|
|
|
|
# logind
|
|
|
|
msg = []
|
|
if get_option('logind').enabled()
|
|
msg += 'Install "lib@0@" or pass "-Dlogind=disabled".'
|
|
endif
|
|
if not get_option('logind').disabled()
|
|
msg += 'Required for logind support.'
|
|
msg += 'You may need to pass "-Dlogind-provider=elogind" or "-Dlogind-provider=systemd" to ensure the correct library is detected.'
|
|
endif
|
|
|
|
logind_version = '>=237'
|
|
logind_found = false
|
|
|
|
if get_option('logind-provider') == 'auto'
|
|
if not get_option('logind').disabled()
|
|
assert(get_option('auto_features').auto(), '-Dlogind-provider must be set to systemd or elogind since auto_features != auto')
|
|
logind = dependency('libsystemd',
|
|
required: get_option('logind'),
|
|
not_found_message: 'libsystemd not found, trying libelogind\n' + '\n'.join(msg),
|
|
version: logind_version,
|
|
)
|
|
if logind.found()
|
|
conf_data.set10('WLR_HAS_SYSTEMD', true)
|
|
else
|
|
logind = dependency('libelogind',
|
|
required: get_option('logind'),
|
|
not_found_message: 'libelogind not found\n' + '\n'.join(msg),
|
|
version: logind_version,
|
|
)
|
|
if logind.found()
|
|
conf_data.set10('WLR_HAS_ELOGIND', true)
|
|
endif
|
|
endif
|
|
logind_found = logind.found()
|
|
endif
|
|
else
|
|
logind = dependency('lib' + get_option('logind-provider'),
|
|
required: get_option('logind'),
|
|
not_found_message: '\n'.join(msg).format(get_option('logind-provider')),
|
|
version: logind_version,
|
|
)
|
|
if logind.found()
|
|
conf_data.set10('WLR_HAS_' + get_option('logind-provider').to_upper(), true)
|
|
logind_found = true
|
|
endif
|
|
endif
|
|
|
|
if logind_found
|
|
wlr_files += files('logind.c')
|
|
wlr_deps += logind
|
|
endif
|
|
|
|
# libcap
|
|
|
|
msg = []
|
|
if get_option('libcap').enabled()
|
|
msg += 'Install "libcap" or pass "-Dlibcap=disabled".'
|
|
endif
|
|
if not get_option('libcap').disabled()
|
|
msg += 'Required for POSIX capability support (Not needed if using logind).'
|
|
endif
|
|
|
|
libcap = dependency('libcap',
|
|
required: get_option('libcap'),
|
|
not_found_message: '\n'.join(msg),
|
|
)
|
|
if libcap.found()
|
|
conf_data.set10('WLR_HAS_LIBCAP', true)
|
|
wlr_deps += libcap
|
|
endif
|
|
|