Mercurial > pidgin
view libpurple/protocols/gg/Makefile.am @ 25538:27e6ab4ff554
This should fix a sporadic crash? The behavior before was clearly wrong--
there's no need to check that body != NULL twice. This behavior should
be better... but this probably shouldn't be a g_return(), since we don't
control the data sent to us by the server it shouldn't be considered a
programming error if they fail to send us the "Completed" key
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 26 Feb 2009 08:14:24 +0000 |
parents | 2b62300d2c19 |
children | adf153852bcf |
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)