launcher-libseat: Rename libseat_dep

Most other dependencies are named dep_* so let's conform.

Signed-off-by: Derek Foreman <derek.foreman@collabora.com>
This commit is contained in:
Derek Foreman 2023-09-29 09:25:16 -05:00
parent 501e3f193f
commit 2296781cee

View file

@ -198,13 +198,13 @@ if get_option('deprecated-launcher-logind')
warning('deprecated-launcher-logind is enabled. This will go away, see https://gitlab.freedesktop.org/wayland/weston/-/issues/488')
endif
if get_option('launcher-libseat')
libseat_dep = dependency('libseat', version: '>= 0.4')
dep_libseat = dependency('libseat', version: '>= 0.4')
config_h.set('HAVE_LIBSEAT', '1')
srcs_session_helper += [
'launcher-libseat.c',
]
deps_session_helper += [
libseat_dep,
dep_libseat,
]
endif