From e1491a72365235a2b25369b672e306627108478c Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Mon, 24 Jan 2022 13:03:42 +0100 Subject: [PATCH] meson: Print deprecation warning for weston-launch weston-launch will be removed in a future release as this feature has been offloaded to libseat and seatd-launch. Print an early deprecation warning to give existing users time to migrate. Signed-off-by: Kenny Levinsen --- libweston/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/libweston/meson.build b/libweston/meson.build index 2d716cc1..c8ffe9ad 100644 --- a/libweston/meson.build +++ b/libweston/meson.build @@ -229,6 +229,7 @@ dep_vertex_clipping = declare_dependency( ) if get_option('weston-launch') + warning('weston-launch is deprecated and will be removed in a future release. Please migrate to libseat and seatd-launch.') dep_pam = cc.find_library('pam') if not cc.has_function('pam_open_session', dependencies: dep_pam)