Mercurial > pidgin
annotate src/protocols/simple/Makefile.am @ 12175:a655bdeb561d
[gaim-migrate @ 14477]
SF Patch #1360582 from Casey Harkins (charkins)
"This patch adds an unseen_count field to gtkconvs which
obviously counts the number of unseen messages. It is
handled entirely within ...set_unseen() in gtkconv.c.
The code for filling the gtkblist menutray context menu
with unseen conversations is moved into gtkconv.c
because it will also be used by the docklet (avoiding
code duplication). I documented it in ChangeLog.API.
The context menu items and the tooltips faceprint added
now will show the message count as well."
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Mon, 21 Nov 2005 00:43:20 +0000 |
| parents | b4cf724b64f8 |
| children | cfc808463763 |
| rev | line source |
|---|---|
| 11181 | 1 pkgdir = $(libdir)/gaim |
| 2 | |
| 3 SIMPLESOURCES = \ | |
| 4 simple.c \ | |
| 5 simple.h \ | |
| 6 sipmsg.c \ | |
| 7 sipmsg.h \ | |
| 8 digcalc.c \ | |
| 11383 | 9 digcalc.h |
| 11181 | 10 |
| 11376 | 11 AM_CFLAGS = $(st) |
| 11181 | 12 |
| 13 libsimple_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) | |
| 14 | |
| 15 if STATIC_MSN | |
| 16 | |
| 17 st = -DGAIM_STATIC_PRPL | |
| 18 noinst_LIBRARIES = libsimple.a | |
| 19 libsimple_a_SOURCES = $(SIMPLESOURCES) | |
| 20 libsimple_a_CFLAGS = $(AM_CFLAGS) | |
| 21 | |
| 22 else | |
| 23 | |
| 24 st = | |
| 25 pkg_LTLIBRARIES = libsimple.la | |
| 26 libsimple_la_SOURCES = $(SIMPLESOURCES) | |
| 27 | |
| 28 endif | |
| 29 | |
| 30 AM_CPPFLAGS = \ | |
| 31 -I$(top_srcdir)/src \ | |
| 32 $(GLIB_CFLAGS) \ | |
| 33 $(DEBUG_CFLAGS) |
