Mercurial > pidgin
view libpurple/protocols/gg/Makefile.am @ 28315:d9eb51a3a3a2
jabber: Don't try to pull a photo out of the <PHOTO/> cdata.
When the data from the server looks literally like:
<PHOTO>
<TYPE>image/jpeg</TYPE>
<BINVAL></BINVAL>
</PHOTO>
xmlnode_get_data(photo_node) will contain (whitespace) data, but in
no way is it a base64-encoded image. I can't find any reference to
clients distributing avatars in that way in the XEP or the RFC.
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Sat, 03 Oct 2009 02:50:48 +0000 |
parents | e33a91b8b8f6 |
children | 6359fde67f4c |
line wrap: on
line source
EXTRA_DIST = \ Makefile.mingw \ lib/common.c \ lib/compat.h \ lib/COPYING \ lib/dcc.c \ lib/events.c \ lib/http.c \ lib/libgadu.c \ lib/libgadu-config.h \ lib/libgadu.h \ lib/obsolete.c \ lib/pubdir50.c \ lib/pubdir.c pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) if USE_INTERNAL_LIBGADU INTGGSOURCES = \ lib/common.c \ lib/compat.h \ lib/dcc.c \ lib/events.c \ lib/http.c \ lib/libgadu.c \ lib/libgadu-config.h \ lib/libgadu.h \ lib/obsolete.c \ lib/pubdir50.c \ lib/pubdir.c INTGG_CFLAGS = -I$(top_srcdir)/libpurple/protocols/gg/lib endif GGSOURCES = \ $(INTGGSOURCES) \ gg-utils.h \ gg-utils.c \ confer.h \ confer.c \ search.h \ search.c \ buddylist.h \ buddylist.c \ gg.h \ gg.c AM_CFLAGS = $(st) libgg_la_LDFLAGS = -module -avoid-version if STATIC_GG st = -DPURPLE_STATIC_PRPL $(GADU_CFLAGS) noinst_LTLIBRARIES = libgg.la libgg_la_SOURCES = $(GGSOURCES) libgg_la_CFLAGS = $(AM_CFLAGS) libgg_la_LIBADD = $(GADU_LIBS) else st = $(GADU_CFLAGS) pkg_LTLIBRARIES = libgg.la libgg_la_SOURCES = $(GGSOURCES) libgg_la_LIBADD = $(GLIB_LIBS) $(GADU_LIBS) endif AM_CPPFLAGS = \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ $(INTGG_CFLAGS) \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)