view libpurple/protocols/sametime/Makefile.am @ 31836:8d6630912021

Add two hash tables to the oscar code that deals with your server stored buddy list. One hash table is indexed by a combination of group id and buddy id. The other hash table is indexed by a combination of item type and item name. This should reduce the number of times we iterate through a linked list by A LOT. This is a modified version of Oliver's patch from #4816. Fixes #4816.
author Mark Doliner <mark@kingant.net>
date Sun, 20 Mar 2011 20:20:52 +0000
parents e33a91b8b8f6
children
line wrap: on
line source

EXTRA_DIST = \
	Makefile.mingw

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

noinst_HEADERS = sametime.h

SAMETIMESOURCES = sametime.c

AM_CFLAGS = \
	$(st)

if STATIC_SAMETIME

st = -DPURPLE_STATIC_PRPL
noinst_LTLIBRARIES     = libsametime.la
libsametime_la_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES     = libsametime.la

endif

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

AM_CPPFLAGS = \
	-I$(top_srcdir)/libpurple \
	-I$(top_builddir)/libpurple \
	$(DEBUG_CFLAGS) \
	$(GLIB_CFLAGS) \
	$(MEANWHILE_CFLAGS) \
	-DG_LOG_DOMAIN=\"sametime\"