Mercurial > pidgin
annotate finch/Makefile.am @ 31228:43f661bc82ed
Fixes this crash:
1. Open an IM window with someone who has just gone online or offline
2. Delete your account from the Accounts window
3. Wait for the 11 second timer to trigger
The conversation code was setting an 11 second timer when a buddy signs
online or offline so that it could stop showing the open door or close
door icon for the buddy, similar to what we do in the buddy list. However,
we didn't keep track of the handle for this timer and didn't clear it if
the account is deleted--thus the crash.
I noticed that we don't currently show the open door or close door icons
in the conversation window. I think it would be good if we did... but
I don't think the gtkconv code should keep track of this information.
gtkblist.c already keeps track of it in gtknode->recent_signonoff_timer.
We should either re-use that, or better yet, we should add "recent signon"
and "recent signoff" states to the status system somehow.
But I don't feel like working on that... it's pretty minor. In any case
I don't think this code is the right way to handle it, so I'm getting
rid of it. Feel free to disapprove this if you disagree! (But also please
fix the crash, maybe just by disabling the timer for now)
I'm also getting rid of the login_list and logout_list lists, since they're
not used.
1 file changed, 33 deletions(-)
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 18 Feb 2011 07:51:43 +0000 |
parents | 77423ba51dd4 |
children | f5e193735392 |
rev | line source |
---|---|
15817 | 1 EXTRA_DIST = \ |
2 getopt.c \ | |
3 getopt.h \ | |
20326
8413368adb5a
applied changes from b5a4f36867889f85c7c9d341c9c295f2f4e51e1d
Luke Schierer <lschiere@pidgin.im>
parents:
19516
diff
changeset
|
4 getopt1.c \ |
8413368adb5a
applied changes from b5a4f36867889f85c7c9d341c9c295f2f4e51e1d
Luke Schierer <lschiere@pidgin.im>
parents:
19516
diff
changeset
|
5 finch.pc.in |
8413368adb5a
applied changes from b5a4f36867889f85c7c9d341c9c295f2f4e51e1d
Luke Schierer <lschiere@pidgin.im>
parents:
19516
diff
changeset
|
6 |
8413368adb5a
applied changes from b5a4f36867889f85c7c9d341c9c295f2f4e51e1d
Luke Schierer <lschiere@pidgin.im>
parents:
19516
diff
changeset
|
7 pkgconfigdir = $(libdir)/pkgconfig |
8413368adb5a
applied changes from b5a4f36867889f85c7c9d341c9c295f2f4e51e1d
Luke Schierer <lschiere@pidgin.im>
parents:
19516
diff
changeset
|
8 pkgconfig_DATA = finch.pc |
15817 | 9 |
10 SUBDIRS = libgnt plugins | |
11 | |
16480
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
12 if ENABLE_GNT |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
13 |
15817 | 14 bin_PROGRAMS = finch |
15 | |
16480
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
16 endif |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
17 |
15817 | 18 finch_SOURCES = \ |
19 gntaccount.c \ | |
20 gntblist.c \ | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19169
diff
changeset
|
21 gntcertmgr.c \ |
15817 | 22 gntconn.c \ |
23 gntconv.c \ | |
24 gntdebug.c \ | |
25 gntft.c \ | |
15822 | 26 finch.c \ |
15817 | 27 gntidle.c \ |
22248
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22006
diff
changeset
|
28 gntlog.c \ |
23789
128f6cb57829
Some media support in finch. This needs to be updated for the got-accept signal.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23782
diff
changeset
|
29 gntmedia.c \ |
15817 | 30 gntnotify.c \ |
31 gntplugin.c \ | |
32 gntpounce.c \ | |
33 gntprefs.c \ | |
34 gntrequest.c \ | |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20326
diff
changeset
|
35 gntroomlist.c \ |
19100 | 36 gntsound.c \ |
15817 | 37 gntstatus.c \ |
38 gntui.c | |
39 | |
40 finch_headers = \ | |
41 gntaccount.h \ | |
42 gntblist.h \ | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19169
diff
changeset
|
43 gntcertmgr.h \ |
15817 | 44 gntconn.h \ |
45 gntconv.h \ | |
46 gntdebug.h \ | |
47 gntft.h \ | |
15822 | 48 finch.h \ |
15817 | 49 gntidle.h \ |
22248
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22006
diff
changeset
|
50 gntlog.h \ |
23789
128f6cb57829
Some media support in finch. This needs to be updated for the got-accept signal.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23782
diff
changeset
|
51 gntmedia.h \ |
15817 | 52 gntnotify.h \ |
53 gntplugin.h \ | |
54 gntpounce.h \ | |
55 gntprefs.h \ | |
56 gntrequest.h \ | |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20326
diff
changeset
|
57 gntroomlist.h \ |
19100 | 58 gntsound.h \ |
15817 | 59 gntstatus.h \ |
60 gntui.h | |
61 | |
15884
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15822
diff
changeset
|
62 finchincludedir=$(includedir)/finch |
15817 | 63 finchinclude_HEADERS = \ |
64 $(finch_headers) | |
65 | |
66 finch_DEPENDENCIES = @LIBOBJS@ | |
67 finch_LDFLAGS = -export-dynamic | |
68 finch_LDADD = \ | |
69 @LIBOBJS@ \ | |
70 $(DBUS_LIBS) \ | |
71 $(INTLLIBS) \ | |
72 $(GLIB_LIBS) \ | |
73 $(LIBXML_LIBS) \ | |
74 $(GNT_LIBS) \ | |
19100 | 75 $(GSTREAMER_LIBS) \ |
15817 | 76 ./libgnt/libgnt.la \ |
77 $(top_builddir)/libpurple/libpurple.la | |
78 | |
79 AM_CPPFLAGS = \ | |
80 -DSTANDALONE \ | |
81 -DDATADIR=\"$(datadir)\" \ | |
15884
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15822
diff
changeset
|
82 -DLIBDIR=\"$(libdir)/finch/\" \ |
15817 | 83 -DLOCALEDIR=\"$(datadir)/locale\" \ |
84 -DSYSCONFDIR=\"$(sysconfdir)\" \ | |
85 -I$(top_srcdir)/libpurple/ \ | |
86 -I$(top_srcdir) \ | |
87 -I$(srcdir)/libgnt/ \ | |
88 $(DEBUG_CFLAGS) \ | |
89 $(GLIB_CFLAGS) \ | |
90 $(DBUS_CFLAGS) \ | |
91 $(LIBXML_CFLAGS) \ | |
19100 | 92 $(GSTREAMER_CFLAGS) \ |
15817 | 93 $(GNT_CFLAGS) |