view src/protocols/sametime/Makefile.am @ 11638:3a05b53a589e

[gaim-migrate @ 13914] Some bits'n'pieces: A bunch of memory leak fixes Fix newly created accounts to connect in the currently active global status Fix the modify account dialog to only show relevant user options etc. Update sametime to use some more of the new status stuff, it still needs more love though. Some s/online/available/ for consistency across prpls Fix a racyness in disconnecting connections that want to die (fixes the Yahoo crash when signing on somewhere else) Sorry if I caused any conflicts! committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 10 Oct 2005 17:59:48 +0000
parents 1a2eaba2bc13
children f8cd06753755
line wrap: on
line source

SUBDIRS = meanwhile

EXTRA_DIST = Makefile.mingw


pkgdir = $(libdir)/gaim


noinst_HEADERS = sametime.h

SAMETIMESOURCES = sametime.c


if STATIC_SAMETIME

st = -DGAIM_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 -no-undefined
libsametime_la_LIBADD = $(GLIB_LIBS) meanwhile/libmeanwhile.la


AM_CFLAGS = \
	$(GLIB_CFLAGS) \
	$(DEBUG_CFLAGS) \
	-I$(top_srcdir)/src \
	-Imeanwhile


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