Mercurial > pidgin
annotate libgaim/protocols/toc/Makefile.am @ 14712:b15c2eaeb67f
[gaim-migrate @ 17466]
Patch #1573404 from Richard Nelson (wabz):
"This patch keeps the blist sorted (sorts rows at the
current depth when the text for a given row changes).
Adds a menu "Options" to the blist and adds the options
to sort by status, alphabetically and toggle offline
buddies."
I changed some of the stuff from the patch. Hopefully I didn't break anything.
I also added a "Sort by log size" option.
committer: Tailor Script <tailor@pidgin.im>
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Thu, 12 Oct 2006 03:26:33 +0000 |
| parents | 60b1bc8dbf37 |
| children |
| rev | line source |
|---|---|
| 14192 | 1 EXTRA_DIST = \ |
| 2 PROTOCOL \ | |
| 3 Makefile.mingw | |
| 4 | |
| 5 pkgdir = $(libdir)/gaim | |
| 6 | |
| 7 TOCSOURCES = toc.c | |
| 8 | |
| 9 AM_CFLAGS = $(st) | |
| 10 | |
| 11 libtoc_la_LDFLAGS = -module -avoid-version | |
| 12 | |
| 13 if STATIC_TOC | |
| 14 | |
| 15 st = -DGAIM_STATIC_PRPL | |
| 16 noinst_LIBRARIES = libtoc.a | |
| 17 libtoc_a_SOURCES = $(TOCSOURCES) | |
| 18 libtoc_a_CFLAGS = $(AM_CFLAGS) | |
| 19 | |
| 20 else | |
| 21 | |
| 22 st = | |
| 23 pkg_LTLIBRARIES = libtoc.la | |
| 24 libtoc_la_SOURCES = $(TOCSOURCES) | |
| 25 | |
| 26 endif | |
| 27 | |
| 28 AM_CPPFLAGS = \ | |
| 29 -I$(top_srcdir)/libgaim \ | |
| 30 $(GLIB_CFLAGS) \ | |
| 31 $(DEBUG_CFLAGS) |
