aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-06-23 08:08:33 +0000
committerKenny Levinsen <kl@kl.wtf>2021-07-06 22:11:43 +0200
commit2204db5531ed16bf32f969645e7177f6118f8a8e (patch)
tree22189c00dd081a35ffa99deeaf773a982e535bc1
parentbff09d88594a35d343b16b21b75495c4284f1292 (diff)
build: add prefix to libseat options
The option names are a little bit confusing, because it's not clear which ones toggle libseat features, and which ones toggle seatd features. Add a "libseat-" prefix to libseat-specific features, to make it more obvious that they only are about the library.
-rw-r--r--meson.build22
-rw-r--r--meson_options.txt6
2 files changed, 14 insertions, 14 deletions
diff --git a/meson.build b/meson.build
index 89fa8df..9d48706 100644
--- a/meson.build
+++ b/meson.build
@@ -102,8 +102,8 @@ server_files = [
'seatd/server.c',
]
-with_seatd = get_option('seatd') == 'enabled'
-with_builtin = get_option('builtin') == 'enabled'
+with_seatd = get_option('libseat-seatd') == 'enabled'
+with_builtin = get_option('libseat-builtin') == 'enabled'
with_server = get_option('server') == 'enabled'
if with_seatd or with_builtin
@@ -116,11 +116,11 @@ endif
logind = disabler()
logind_provider = ''
-if get_option('logind') != 'disabled'
- if get_option('logind') == 'auto' and get_option('auto_features').disabled()
+if get_option('libseat-logind') != 'disabled'
+ if get_option('libseat-logind') == 'auto' and get_option('auto_features').disabled()
# Disable logind
- elif get_option('logind') == 'auto'
- assert(get_option('auto_features').auto(), '-Dlogind must be set to systemd or elogind since auto_features != auto')
+ elif get_option('libseat-logind') == 'auto'
+ assert(get_option('auto_features').auto(), '-Dlibseat-logind must be set to systemd or elogind since auto_features != auto')
foreach logind_provider : ['elogind', 'systemd']
logind = dependency('lib@0@'.format(logind_provider), required: false)
if logind.found()
@@ -128,7 +128,7 @@ if get_option('logind') != 'disabled'
endif
endforeach
else
- logind_provider = get_option('logind')
+ logind_provider = get_option('libseat-logind')
logind = dependency('lib@0@'.format(logind_provider))
endif
@@ -258,9 +258,9 @@ if scdoc.found()
endif
summary({
- 'seatd': with_seatd,
- 'builtin': with_builtin,
+ 'libseat-seatd': with_seatd,
+ 'libseat-builtin': with_builtin,
+ 'libseat-systemd': logind.found() and logind_provider == 'systemd',
+ 'libseat-elogind': logind.found() and logind_provider == 'elogind',
'server': with_server,
- 'systemd': logind.found() and logind_provider == 'systemd',
- 'elogind': logind.found() and logind_provider == 'elogind',
}, bool_yn: true)
diff --git a/meson_options.txt b/meson_options.txt
index 144ce7a..0731ac4 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,6 +1,6 @@
-option('logind', type: 'combo', choices: ['auto', 'disabled', 'elogind', 'systemd'], value: 'auto', description: 'logind support')
-option('seatd', type: 'combo', choices: ['enabled', 'disabled'], value: 'enabled', description: 'seatd support')
-option('builtin', type: 'combo', choices: ['enabled', 'disabled'], value: 'disabled', description: 'builtin seatd server')
+option('libseat-logind', type: 'combo', choices: ['auto', 'disabled', 'elogind', 'systemd'], value: 'auto', description: 'logind support for libseat')
+option('libseat-seatd', type: 'combo', choices: ['enabled', 'disabled'], value: 'enabled', description: 'seatd support for libseat')
+option('libseat-builtin', type: 'combo', choices: ['enabled', 'disabled'], value: 'disabled', description: 'built-in seatd server for libseat')
option('server', type: 'combo', choices: ['enabled', 'disabled'], value: 'enabled', description: 'seatd server')
option('examples', type: 'combo', choices: ['enabled', 'disabled'], value: 'disabled', description: 'libseat example programs')
option('man-pages', type: 'feature', value: 'auto', description: 'Generate and install man pages')