Patch-Source: https://github.com/chimera-linux/cports/blob/793dbd2807070fd0fd4f7ba37fd73d4c5ff47584/main/gnome-shell/patches/no-exe-introspection.patch commit 1d1e96c094570c3a822f835abbff0a5bca4ca10e Author: Daniel Kolesa Date: Sun Mar 19 19:11:00 2023 +0100 Disable 9bc89b821cf09195418f20225bbec39c0567d263 Even if we manually define _DYNAMIC, it does not work (segfaults somewhere in musl, coming from g_strsplit) and is pretty useless for our case anyway. diff --git a/src/main.c b/src/main.c index 8cccc0a..ef6408f 100644 --- a/src/main.c +++ b/src/main.c @@ -19,6 +19,10 @@ #include #include +#ifdef HAVE_EXE_INTROSPECTION +#undef HAVE_EXE_INTROSPECTION +#endif + #ifdef HAVE_EXE_INTROSPECTION #include #endif