Mercurial > pidgin
annotate src/protocols/simple/Makefile.am @ 11654:bf6ba37db13b
[gaim-migrate @ 13938]
Some changes to the gtkstatusbar. I took out all the saved statuses.
They should be replaced by a list of the most recently used
saved+transient statuses.
I also removed the /core/away/default_message preference and replaced
it with /core/status/current and /core/status/idleaway. These new
prefs store the title of the saved status that is being used and should
be used when you become idle, respectively.
Some bits still need some work, but I think this is moving in the
right direction.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Thu, 13 Oct 2005 02:50:13 +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) |
