From c6067ffa1d31b7de8c936d6089a5da9a15450ea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 10 Apr 2014 17:33:25 +0200 Subject: [PATCH] extension-prefs: Force linking with libgnome-shell-js Use the same hack we use for the main executable to fool the linker when using --as-needed. https://bugzilla.gnome.org/show_bug.cgi?id=727948 --- src/gnome-shell-extension-prefs.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/gnome-shell-extension-prefs.c b/src/gnome-shell-extension-prefs.c index 75f687e7f..e97df5df2 100644 --- a/src/gnome-shell-extension-prefs.c +++ b/src/gnome-shell-extension-prefs.c @@ -50,3 +50,18 @@ main (int argc, char *argv[]) return 0; } + + +/* HACK: + Add a dummy function that calls into libgnome-shell-js.so to ensure it's + linked to /usr/bin/gnome-shell-extension-prefs even when linking with + --as-needed. This function is never actually called. + https://bugzilla.gnome.org/show_bug.cgi?id=670477 +*/ +void _shell_link_to_shell_js (void); + +void +_shell_link_to_shell_js (void) +{ + shell_js_add_extension_importer (NULL, NULL, NULL, NULL); +}