view libpurple/protocols/sametime/Makefile.am @ 16208:85d5942e80e9

Port SVN revisions 18230 to 18232 from Mark Huetsch from sf SVN to Pidgin Monotone. Original commit messages: Bug 1671638 fixed bhpan. Bug 1658961 fixed by gnap. Fixed a bug where gaim was playing n x n times user leaving chat room sound when opening a QQ protocol chat room, n equaling the number of users in the chat room. Patch by gnap.
author Mark Doliner <mark@kingant.net>
date Mon, 16 Apr 2007 06:37:20 +0000
parents 53f9f4ebea7a
children 7125eda8fe22
line wrap: on
line source


EXTRA_DIST = Makefile.mingw


pkgdir = $(libdir)/libpurple


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


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