[gnome-shell] Link the gnome-shell binary to libgnome-shell-js.so



commit e20ea19f34a4ef9661c3cece2793c0c7f5d3dca9
Author: Owen W. Taylor <otaylor fishsoup net>
Date:   Wed Apr 4 17:48:47 2012 -0400

    Link the gnome-shell binary to libgnome-shell-js.so
    
    Depending on the exact linker options and versions, rpath's written
    into the binary may, or may not, be honored by dlopen(). Work around
    this by simply linking the gnome-shell binary to gnome-shell-js, since
    then dlopen() doesn't need to search paths.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670477

 src/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 981a16d..dc5137e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -193,7 +193,7 @@ libgnome_shell_la_gir_sources = \
 gnome_shell_real_SOURCES =		\
 	main.c
 gnome_shell_real_CPPFLAGS = $(gnome_shell_cflags)
-gnome_shell_real_LDADD = libgnome-shell.la $(libgnome_shell_la_LIBADD)
+gnome_shell_real_LDADD = libgnome-shell.la libgnome-shell-js.la $(libgnome_shell_la_LIBADD)
 gnome_shell_real_DEPENDENCIES = libgnome-shell.la
 
 EXTRA_DIST += test-gapplication.js



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]