view libpurple/protocols/myspace/Makefile.am @ 17322:6fa345a01dd8

Show buddy information in tooltip text, and the display name for status text. Added msim_store_buddy_info(), which saves user information from the user info reply directly to the buddy list node. Callback functions now use purple_blist_node_get_{int,string}() to retrieve fields, such as UserID, DisplayName, TotalFriends, Age, etc. from the buddy list node.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Thu, 14 Jun 2007 00:23:06 +0000
parents 52357f6392a4
children 210f792efd7c
line wrap: on
line source

EXTRA_DIST = Makefile.mingw

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

SOURCES = myspace.c message.c

AM_CFLAGS = $(st)

libmyspace_la_LDFLAGS = -module -avoid-version

if STATIC_MYSPACE

st = -DPURPLE_STATIC_PRPL
noinst_LIBRARIES     = libmyspace.a
libmyspace_a_SOURCES = $(SOURCES)
libmyspace_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES       = libmyspace.la
libmyspace_la_SOURCES = $(SOURCES)
libmyspace_la_LIBADD  = $(GLIB_LIBS)

endif

AM_CPPFLAGS = \
	-I$(top_srcdir)/libpurple \
	$(GLIB_CFLAGS) \
	$(DEBUG_CFLAGS)