Mercurial > pidgin.yaz
annotate finch/Makefile.am @ 29234:4478ce23487a
If a buddy is deleted less than 11 seconds after they sign on or off, and
there is a conversation open with that buddy, the PurpleBuddy will be
dereferenced after it has been freed. This avoids that by duplicating the
required details from the PurpleBuddy for use in the status_timeout callback.
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Wed, 06 Jan 2010 00:55:08 +0000 |
parents | 77423ba51dd4 |
children |
rev | line source |
---|---|
15818 | 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 |
15818 | 9 |
10 SUBDIRS = libgnt plugins | |
11 | |
16488
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
12 if ENABLE_GNT |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
13 |
15818 | 14 bin_PROGRAMS = finch |
15 | |
16488
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
16 endif |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
17 |
15818 | 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 \ |
15818 | 22 gntconn.c \ |
23 gntconv.c \ | |
24 gntdebug.c \ | |
25 gntft.c \ | |
15823 | 26 finch.c \ |
15818 | 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 \ |
25639
128f6cb57829
Some media support in finch. This needs to be updated for the got-accept signal.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
25632
diff
changeset
|
29 gntmedia.c \ |
15818 | 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 \ |
15818 | 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 \ |
15818 | 44 gntconn.h \ |
45 gntconv.h \ | |
46 gntdebug.h \ | |
47 gntft.h \ | |
15823 | 48 finch.h \ |
15818 | 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 \ |
25639
128f6cb57829
Some media support in finch. This needs to be updated for the got-accept signal.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
25632
diff
changeset
|
51 gntmedia.h \ |
15818 | 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 \ |
15818 | 59 gntstatus.h \ |
60 gntui.h | |
61 | |
15885
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15823
diff
changeset
|
62 finchincludedir=$(includedir)/finch |
15818 | 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) \ |
15818 | 76 ./libgnt/libgnt.la \ |
77 $(top_builddir)/libpurple/libpurple.la | |
78 | |
79 AM_CPPFLAGS = \ | |
80 -DSTANDALONE \ | |
81 -DDATADIR=\"$(datadir)\" \ | |
15885
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15823
diff
changeset
|
82 -DLIBDIR=\"$(libdir)/finch/\" \ |
15818 | 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) \ |
15818 | 93 $(GNT_CFLAGS) |