From: <nos...@us...> - 2006-10-01 16:33:27
|
Revision: 17419 http://svn.sourceforge.net/gaim/?rev=17419&view=rev Author: nosnilmot Date: 2006-10-01 09:33:14 -0700 (Sun, 01 Oct 2006) Log Message: ----------- Link to external libraries where necessary to reduce the number of undefined symbols reported by ldd -r Modified Paths: -------------- trunk/console/libgnt/wms/Makefile.am trunk/console/plugins/Makefile.am trunk/libgaim/protocols/jabber/Makefile.am trunk/libgaim/protocols/qq/Makefile.am Modified: trunk/console/libgnt/wms/Makefile.am =================================================================== --- trunk/console/libgnt/wms/Makefile.am 2006-10-01 16:11:39 UTC (rev 17418) +++ trunk/console/libgnt/wms/Makefile.am 2006-10-01 16:33:14 UTC (rev 17419) @@ -1,4 +1,4 @@ -s_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) +s_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(GNT_LIBS) plugin_LTLIBRARIES = \ s.la Modified: trunk/console/plugins/Makefile.am =================================================================== --- trunk/console/plugins/Makefile.am 2006-10-01 16:11:39 UTC (rev 17418) +++ trunk/console/plugins/Makefile.am 2006-10-01 16:33:14 UTC (rev 17419) @@ -1,5 +1,5 @@ -gntgf_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(X11_LIBS) -gnthistory_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) +gntgf_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(X11_LIBS) $(GNT_LIBS) +gnthistory_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) if PLUGINS @@ -9,8 +9,8 @@ plugindir = $(libdir)/gaim -gntgf_la_SOURCES = gntgf.c -gnthistory_la_SOURCES = gnthistory.c +gntgf_la_SOURCES = gntgf.c +gnthistory_la_SOURCES = gnthistory.c endif # PLUGINS Modified: trunk/libgaim/protocols/jabber/Makefile.am =================================================================== --- trunk/libgaim/protocols/jabber/Makefile.am 2006-10-01 16:11:39 UTC (rev 17418) +++ trunk/libgaim/protocols/jabber/Makefile.am 2006-10-01 16:33:14 UTC (rev 17419) @@ -36,7 +36,7 @@ AM_CFLAGS = $(st) -libjabber_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(SASL_LIBS) +libjabber_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(SASL_LIBS) $(LIBXML_LIBS) if STATIC_JABBER Modified: trunk/libgaim/protocols/qq/Makefile.am =================================================================== --- trunk/libgaim/protocols/qq/Makefile.am 2006-10-01 16:11:39 UTC (rev 17418) +++ trunk/libgaim/protocols/qq/Makefile.am 2006-10-01 16:33:14 UTC (rev 17419) @@ -73,7 +73,7 @@ AM_CFLAGS = $(st) -libqq_la_LDFLAGS = -module -avoid-version +libqq_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) if STATIC_QQ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |