From: Kristian Høgsberg Date: Tue, 11 Sep 2012 18:29:47 +0000 (-0400) Subject: compositor: Always set WAYLAND_DISPLAY X-Git-Tag: submit/trunk/20120913.174637~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eb00e2e24b0f00ad43729c08c3abe220b2276b9c;p=profile%2Fivi%2Fweston.git compositor: Always set WAYLAND_DISPLAY We used to only set it if we were given an argument on the command line. It's useful to always set it so nested weston works out of the box. --- diff --git a/src/compositor.c b/src/compositor.c index ba4c700..8e23e32 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -2994,7 +2994,7 @@ int main(int argc, char *argv[]) int32_t idle_time = 300; int32_t xserver = 0; int32_t help = 0; - char *socket_name = NULL; + char *socket_name = "wayland-0"; char *config_file; const struct config_key shell_config_keys[] = { @@ -3088,6 +3088,8 @@ int main(int argc, char *argv[]) ec->option_idle_time = idle_time; ec->idle_time = idle_time; + setenv("WAYLAND_DISPLAY", socket_name, 1); + module_init = NULL; if (xserver) module_init = load_module("xwayland.so", "module_init"); @@ -3096,9 +3098,6 @@ int main(int argc, char *argv[]) goto out; } - if (socket_name) - setenv("WAYLAND_DISPLAY", socket_name, 1); - if (!shell) shell = "desktop-shell.so"; module_init = load_module(shell, "module_init");