view src/protocols/sametime/Makefile.am @ 13967:99b9b58b19dd

[gaim-migrate @ 16523] Fix a crazy MSN crash. Basically it's possible to have more than one slplink associated with a given switchboard, but our code did not allow for that. I think it happens when you're in a multi-user chat and you do stuff with multiple users that involves slplinks. Like maybe file transfer and buddy icon related stuff. Tracking this down took an ungodly amount of time, but thanks to Meebo for letting me do it :-) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 20 Jul 2006 07:31:15 +0000
parents f9d0ab1474ac
children
line wrap: on
line source


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_LIBS)


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


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