Mercurial > pidgin.yaz
annotate finch/Makefile.am @ 20953:111f4b8084b0
Track the unseen state on the PurpleConversation for dettached convs. This
allows us to only blink the tray icon when our nick was said instead of
for every message sent to a chat (when dettached).
author | Casey Harkins <charkins@pidgin.im> |
---|---|
date | Mon, 15 Oct 2007 22:16:57 +0000 |
parents | 71c7d0222a33 |
children | 1278280fa0b6 60f5abc6cf0c |
rev | line source |
---|---|
15818 | 1 EXTRA_DIST = \ |
2 getopt.c \ | |
3 getopt.h \ | |
20802
71c7d0222a33
pkg-config shizzle for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19516
diff
changeset
|
4 getopt1.c \ |
71c7d0222a33
pkg-config shizzle for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19516
diff
changeset
|
5 finch.pc.in |
71c7d0222a33
pkg-config shizzle for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19516
diff
changeset
|
6 |
71c7d0222a33
pkg-config shizzle for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19516
diff
changeset
|
7 pkgconfigdir = $(libdir)/pkgconfig |
71c7d0222a33
pkg-config shizzle for finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
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 \ |
28 gntnotify.c \ | |
29 gntplugin.c \ | |
30 gntpounce.c \ | |
31 gntprefs.c \ | |
32 gntrequest.c \ | |
19100 | 33 gntsound.c \ |
15818 | 34 gntstatus.c \ |
35 gntui.c | |
36 | |
37 finch_headers = \ | |
38 gntaccount.h \ | |
39 gntblist.h \ | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19169
diff
changeset
|
40 gntcertmgr.h \ |
15818 | 41 gntconn.h \ |
42 gntconv.h \ | |
43 gntdebug.h \ | |
44 gntft.h \ | |
15823 | 45 finch.h \ |
15818 | 46 gntidle.h \ |
47 gntnotify.h \ | |
48 gntplugin.h \ | |
49 gntpounce.h \ | |
50 gntprefs.h \ | |
51 gntrequest.h \ | |
19100 | 52 gntsound.h \ |
15818 | 53 gntstatus.h \ |
54 gntui.h | |
55 | |
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
|
56 finchincludedir=$(includedir)/finch |
15818 | 57 finchinclude_HEADERS = \ |
58 $(finch_headers) | |
59 | |
60 finch_DEPENDENCIES = @LIBOBJS@ | |
61 finch_LDFLAGS = -export-dynamic | |
62 finch_LDADD = \ | |
63 @LIBOBJS@ \ | |
64 $(DBUS_LIBS) \ | |
65 $(INTLLIBS) \ | |
66 $(GLIB_LIBS) \ | |
67 $(LIBXML_LIBS) \ | |
68 $(GNT_LIBS) \ | |
19100 | 69 $(GSTREAMER_LIBS) \ |
15818 | 70 ./libgnt/libgnt.la \ |
71 $(top_builddir)/libpurple/libpurple.la | |
72 | |
73 AM_CPPFLAGS = \ | |
74 -DSTANDALONE \ | |
75 -DBR_PTHREADS=0 \ | |
76 -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
|
77 -DLIBDIR=\"$(libdir)/finch/\" \ |
15818 | 78 -DLOCALEDIR=\"$(datadir)/locale\" \ |
79 -DSYSCONFDIR=\"$(sysconfdir)\" \ | |
80 -I$(top_srcdir)/libpurple/ \ | |
81 -I$(top_srcdir) \ | |
82 -I$(srcdir)/libgnt/ \ | |
83 $(DEBUG_CFLAGS) \ | |
84 $(GLIB_CFLAGS) \ | |
85 $(DBUS_CFLAGS) \ | |
86 $(LIBXML_CFLAGS) \ | |
19100 | 87 $(GSTREAMER_CFLAGS) \ |
15818 | 88 $(GNT_CFLAGS) |