view libpurple/protocols/sametime/Makefile.am @ 22126:22908b354baf

Two performance/network bandwidth related changes here, care of meebo. 1. Only auto-fetch stuff for people who are away, because we really only want their away message. This changes oscar to NOT auto-fetch people's profile info. That doesn't matter for Pidgin and I don't think it matters for Finch. If it causes bad things for Adium or other things then please let me know. 2. When auto-fetching stuff, only request the away message and not the profile info, because we really only want the away message. Again, if this causes bad things to happen then please let me know.
author Mark Doliner <mark@kingant.net>
date Wed, 16 Jan 2008 07:37:29 +0000
parents 441945083737
children 2b62300d2c19 315151da0dc6
line wrap: on
line source


EXTRA_DIST = Makefile.mingw


pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)


noinst_HEADERS = sametime.h

SAMETIMESOURCES = sametime.c


if STATIC_SAMETIME

st = -DPURPLE_STATIC_PRPL
noinst_LIBRARIES   = libsametime.a
libsametime_a_SOURCES = $(SAMETIMESOURCES)
libsametime_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES     = libsametime.la
libsametime_la_SOURCES = $(SAMETIMESOURCES)


endif


libsametime_la_LDFLAGS = -module -avoid-version
libsametime_la_LIBADD = $(GLIB_LIBS) $(MEANWHILE_LIBS)


AM_CFLAGS = \
	$(GLIB_CFLAGS) $(MEANWHILE_CFLAGS) \
	$(DEBUG_CFLAGS) \
	-I$(top_srcdir)/libpurple \
	-I$(top_builddir)/libpurple


AM_CPPFLAGS = \
	-DG_LOG_DOMAIN=\"sametime\" \
	$(st)