From 10c542f7a991756f195742389e26ef56a2ec9361 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Thu, 1 Jan 2026 19:48:40 -0700 Subject: [reorg] - Finished reorg. Finally have coherent building on top of CMake. And installing actually works. In addition we use a static wlroots to avoid version hell. --- rt/src/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rt/src/plugin.c') diff --git a/rt/src/plugin.c b/rt/src/plugin.c index 37a6dd3..0799b9c 100644 --- a/rt/src/plugin.c +++ b/rt/src/plugin.c @@ -116,7 +116,7 @@ static void* plugin_get_seat(void* ctx) { static int load_plugin_from_file_(int argc, char **argv, const char *filename, plugin_t *plugin) { - dlhandle_t lib = dlopen(filename, RTLD_LAZY); + dlhandle_t lib = dlopen(filename, RTLD_NOW | RTLD_GLOBAL); int ec = 0; if (!lib) { -- cgit