Mercurial > pidgin
annotate src/protocols/rendezvous/Makefile.am @ 8937:fd1a4ff1f7ed
[gaim-migrate @ 9707]
Tools->Room List will now be grayed out when you're not signed on
with an account that supports listing rooms.
This involved 2 big changes:
-Change when the sign_on_off_cb function in gtkblist gets called...
it used to get called when the signing-on and signing-off signal
was emitted, but I changed it to signed-on and signed-off. This
makes more sense to me, and it makes my code work :-) Let me know
if you notice any side-effects
-Add functions to the roomlist API for determining if any online
accounts support chatting or not. This involved extracting a
function from gtkroomlist.c and putting it in roomlist.c, and
adding a little helper TRUE/FALSE function
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sat, 15 May 2004 21:56:17 +0000 |
| parents | dbbf5470ba05 |
| children | fe9f4eee3dcb |
| rev | line source |
|---|---|
| 8489 | 1 EXTRA_DIST = \ |
| 2 Makefile.mingw | |
| 3 | |
| 4 pkgdir = $(libdir)/gaim | |
| 5 | |
| 6 RENDEZVOUSSOURCES = \ | |
| 7 mdns.c \ | |
| 8738 | 8 mdns_cache.c \ |
| 8489 | 9 rendezvous.c |
| 10 | |
| 11 AM_CFLAGS = $(st) | |
| 12 | |
| 13 librendezvous_la_LDFLAGS = -module -avoid-version | |
| 14 | |
| 15 if STATIC_RENDEZVOUS | |
| 16 | |
| 17 st = -DGAIM_STATIC_PRPL | |
| 18 noinst_LIBRARIES = librendezvous.a | |
| 19 librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES) | |
| 20 librendezvous_a_CFLAGS = $(AM_CFLAGS) | |
| 21 | |
| 22 else | |
| 23 | |
| 24 st = | |
| 25 pkg_LTLIBRARIES = librendezvous.la | |
| 26 librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES) | |
| 27 | |
| 28 endif | |
| 29 | |
| 30 | |
| 31 AM_CPPFLAGS = \ | |
| 32 -I$(top_srcdir)/src \ | |
| 33 $(GLIB_CFLAGS) \ | |
| 34 $(DEBUG_CFLAGS) |
