Mercurial > pidgin
view console/plugins/Makefile.am @ 14391:6e89bfd2b33f
[gaim-migrate @ 17098]
I don't think PRPLs should need to make sure that proto_data is
valid in the set_idle() callback. Some of my idle changes on the
23rd added that requirement. This removes the requirement to
make things the way they were before.
I'm also reverting SVN revision 17005 from faceprint and 17009
from marv_sf. Those revisions fixed the PRPLs so they wouldn't
crash if set_idle() was called before the acocunt was fully
connected. But that shouldn't be needed any more.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Thu, 31 Aug 2006 09:02:10 +0000 |
| parents | 7c560c01b8f9 |
| children | 9e9699792bb9 |
line wrap: on
line source
gntgf_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) gnthistory_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) if PLUGINS plugin_LTLIBRARIES = \ gntgf.la \ gnthistory.la plugindir = $(libdir)/gaim gntgf_la_SOURCES = gntgf.c gnthistory_la_SOURCES = gnthistory.c endif # PLUGINS EXTRA_DIST = AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DVERSION=\"$(VERSION)\" \ -I$(top_builddir)/libgaim \ -I$(top_srcdir)/libgaim \ -I$(top_srcdir)/console \ -I$(top_srcdir)/console/libgnt \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ $(PLUGIN_CFLAGS) # # This part allows people to build their own plugins in here. # Yes, it's a mess. # SUFFIXES = .c .so .c.so: $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_srcdir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) @rm -f tmp$@.lo tmp$@.o libtmp$@.la @cp .libs/libtmp$@.so* $@ @rm -f .libs/libtmp$@.*
