changeset 10889:2cc05a9e944d

[gaim-migrate @ 12597] Fix Fedora "Bug" 149767 ??? gaim plugins unresolved symbols committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Fri, 29 Apr 2005 17:04:28 +0000
parents 29bec53bd2d2
children 8b8c59069028
files plugins/Makefile.am plugins/docklet/Makefile.am plugins/gaim-remote/Makefile.am plugins/gestures/Makefile.am plugins/gevolution/Makefile.am plugins/perl/Makefile.am plugins/ssl/Makefile.am plugins/tcl/Makefile.am plugins/ticker/Makefile.am src/protocols/gg/Makefile.am src/protocols/irc/Makefile.am src/protocols/jabber/Makefile.am src/protocols/msn/Makefile.am src/protocols/napster/Makefile.am src/protocols/novell/Makefile.am src/protocols/oscar/Makefile.am src/protocols/rendezvous/Makefile.am src/protocols/silc/Makefile.am src/protocols/yahoo/Makefile.am src/protocols/zephyr/Makefile.am
diffstat 20 files changed, 33 insertions(+), 32 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -18,17 +18,17 @@
 
 plugindir = $(libdir)/gaim
 
-autorecon_la_LDFLAGS    = -module -avoid-version
-extplacement_la_LDFLAGS = -module -avoid-version
-gaimrc_la_LDFLAGS       = -module -avoid-version
-history_la_LDFLAGS      = -module -avoid-version
-iconaway_la_LDFLAGS     = -module -avoid-version
-idle_la_LDFLAGS         = -module -avoid-version
-notify_la_LDFLAGS       = -module -avoid-version
-relnot_la_LDFLAGS       = -module -avoid-version
-spellchk_la_LDFLAGS     = -module -avoid-version
-statenotify_la_LDFLAGS  = -module -avoid-version
-timestamp_la_LDFLAGS    = -module -avoid-version
+autorecon_la_LDFLAGS    = -module -avoid-version $(GLIB_LIBS)
+extplacement_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
+gaimrc_la_LDFLAGS       = -module -avoid-version $(GTK_LIBS)
+history_la_LDFLAGS      = -module -avoid-version $(GTK_LIBS)
+iconaway_la_LDFLAGS     = -module -avoid-version $(GTK_LIBS)
+idle_la_LDFLAGS         = -module -avoid-version $(GLIB_LIBS)
+notify_la_LDFLAGS       = -module -avoid-version $(GTK_LIBS)
+relnot_la_LDFLAGS       = -module -avoid-version $(GLIB_LIBS)
+spellchk_la_LDFLAGS     = -module -avoid-version $(GTK_LIBS)
+statenotify_la_LDFLAGS  = -module -avoid-version $(GLIB_LIBS)
+timestamp_la_LDFLAGS    = -module -avoid-version $(GTK_LIBS)
 
 if PLUGINS
 
--- a/plugins/docklet/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/docklet/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -4,7 +4,7 @@
 
 plugindir = $(libdir)/gaim
 
-docklet_la_LDFLAGS = -module -avoid-version
+docklet_la_LDFLAGS = -module -avoid-version $(GTK_LIBS)
 
 if PLUGINS
 
--- a/plugins/gaim-remote/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/gaim-remote/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -18,7 +18,7 @@
 plugin_LTLIBRARIES = gaim-remote.la
 
 gaim_remote_la_SOURCES = remote.c
-gaim_remote_la_LIBADD = libgaim-remote.la $(GLIB_LIBS)
+gaim_remote_la_LIBADD = libgaim-remote.la $(GTK_LIBS)
 
 endif
 
--- a/plugins/gestures/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/gestures/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -1,6 +1,6 @@
 plugindir = $(libdir)/gaim
 
-gestures_la_LDFLAGS = -module -avoid-version
+gestures_la_LDFLAGS = -module -avoid-version $(GTK_LIBS)
 
 if PLUGINS
 
--- a/plugins/gevolution/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/gevolution/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -2,7 +2,8 @@
 
 gevolution_la_LDFLAGS = \
 	-module -avoid-version \
-	$(EVOLUTION_ADDRESSBOOK_LIBS)
+	$(EVOLUTION_ADDRESSBOOK_LIBS) \
+	$(GTK_LIBS)
 
 if PLUGINS
 
--- a/plugins/perl/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/perl/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -4,7 +4,7 @@
 
 plugin_LTLIBRARIES = perl.la
 
-perl_la_LDFLAGS = -module -avoid-version $(PERL_LIBS)
+perl_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(PERL_LIBS)
 perl_la_LIBADD = $(PERL_LIBS)
 perl_la_SOURCES = \
 	perl.c \
--- a/plugins/ssl/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/ssl/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -3,9 +3,9 @@
 
 plugindir = $(libdir)/gaim
 
-ssl_la_LDFLAGS        = -module -avoid-version
-ssl_gnutls_la_LDFLAGS = -module -avoid-version
-ssl_nss_la_LDFLAGS    = -module -avoid-version
+ssl_la_LDFLAGS        = -module -avoid-version $(GLIB_LIBS)
+ssl_gnutls_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
+ssl_nss_la_LDFLAGS    = -module -avoid-version $(GLIB_LIBS)
 
 if PLUGINS
 
--- a/plugins/tcl/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/tcl/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -1,6 +1,6 @@
 plugindir = $(libdir)/gaim
 
-tcl_la_LDFLAGS = -module -avoid-version $(TCL_LIBS) $(TK_LIBS)
+tcl_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(TCL_LIBS) $(TK_LIBS)
 
 plugin_LTLIBRARIES = tcl.la
 
--- a/plugins/ticker/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/plugins/ticker/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -3,7 +3,7 @@
 
 plugindir = $(libdir)/gaim
 
-ticker_la_LDFLAGS = -module -avoid-version
+ticker_la_LDFLAGS = -module -avoid-version $(GTK_LIBS)
 
 if PLUGINS
 
--- a/src/protocols/gg/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/gg/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -12,7 +12,7 @@
 
 AM_CFLAGS = $(st)
 
-libgg_la_LDFLAGS = -module -avoid-version
+libgg_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_GG
 
--- a/src/protocols/irc/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/irc/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -6,7 +6,7 @@
 
 AM_CFLAGS = $(st)
 
-libirc_la_LDFLAGS = -module -avoid-version
+libirc_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_IRC
 
--- a/src/protocols/jabber/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/jabber/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -36,7 +36,7 @@
 
 AM_CFLAGS = $(st)
 
-libjabber_la_LDFLAGS = -module -avoid-version
+libjabber_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_JABBER
 
--- a/src/protocols/msn/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/msn/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -65,7 +65,7 @@
 
 AM_CFLAGS = $(st)
 
-libmsn_la_LDFLAGS = -module -avoid-version
+libmsn_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_MSN
 
--- a/src/protocols/napster/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/napster/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -7,7 +7,7 @@
 
 AM_CFLAGS = $(st)
 
-libnapster_la_LDFLAGS = -module -avoid-version
+libnapster_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_NAPSTER
 
--- a/src/protocols/novell/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/novell/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -28,7 +28,7 @@
 
 AM_CFLAGS = $(st)
 
-libnovell_la_LDFLAGS = -module -avoid-version
+libnovell_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_NOVELL
 
--- a/src/protocols/oscar/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/oscar/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -50,7 +50,7 @@
 
 AM_CFLAGS = $(st)
 
-liboscar_la_LDFLAGS = -module -avoid-version
+liboscar_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_OSCAR
 
--- a/src/protocols/rendezvous/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/rendezvous/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -14,7 +14,7 @@
 
 AM_CFLAGS = $(st)
 
-librendezvous_la_LDFLAGS = -module -avoid-version
+librendezvous_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_RENDEZVOUS
 
--- a/src/protocols/silc/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/silc/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -6,7 +6,7 @@
 
 AM_CFLAGS = $(st)
 
-libsilcgaim_la_LDFLAGS = -module -avoid-version
+libsilcgaim_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_SILC
 
--- a/src/protocols/yahoo/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/yahoo/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -26,7 +26,7 @@
 
 AM_CFLAGS = $(st)
 
-libyahoo_la_LDFLAGS = -module -avoid-version
+libyahoo_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_YAHOO
 
--- a/src/protocols/zephyr/Makefile.am	Thu Apr 28 20:48:12 2005 +0000
+++ b/src/protocols/zephyr/Makefile.am	Fri Apr 29 17:04:28 2005 +0000
@@ -73,7 +73,7 @@
 
 ZEPHYRLIBSEXT = $(ZEPHYR_LDFLAGS) $(ZEPHYR_LIBS)
 
-libzephyr_la_LDFLAGS = -module -avoid-version
+libzephyr_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
 
 if STATIC_ZEPHYR