From ae9643f729fddfc63700d3c79682dc0cd30c6cc3 Mon Sep 17 00:00:00 2001 From: Hideyuki Nagase Date: Thu, 10 Mar 2022 12:36:49 -0600 Subject: [PATCH] build: enable configuration of RDP backend as a default Add RDP to the list of backends we can set as default for use when weston is launched without display/socket environment vars set. Co-authored-by: Steve Pronovost Co-authored-by: Brenton DeGeer Signed-off-by: Hideyuki Nagase Signed-off-by: Steve Pronovost Signed-off-by: Brenton DeGeer --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 38c746e9..b2c4a50f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -47,7 +47,7 @@ option( option( 'backend-default', type: 'combo', - choices: [ 'auto', 'drm', 'wayland', 'x11', 'headless' ], + choices: [ 'auto', 'drm', 'wayland', 'x11', 'headless', 'rdp' ], value: 'drm', description: 'Default backend when no parent display server detected' )