diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2026-01-01 19:48:40 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2026-01-01 19:48:40 -0700 |
| commit | 10c542f7a991756f195742389e26ef56a2ec9361 (patch) | |
| tree | d7edc647a026da4ad9b20aafe4a9f1509720de5a /rt/src | |
| parent | 628174c992a5a740feb4dc119adf8dfb1f89f992 (diff) | |
| download | montis-10c542f7a991756f195742389e26ef56a2ec9361.tar.gz montis-10c542f7a991756f195742389e26ef56a2ec9361.tar.bz2 montis-10c542f7a991756f195742389e26ef56a2ec9361.zip | |
[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.
Diffstat (limited to 'rt/src')
| -rw-r--r-- | rt/src/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |