Mercurial > pidgin.yaz
annotate finch/Makefile.am @ 19367:bf918749b375
Separate out setting up the labelled-by and label-for ATK relationships
from pidgin_set_accessible_label(). This allows us to set up the label
relationships for combo boxes in gtkprefs without setting an ATK
name on the combo box (which breaks screen reading of the combo box).
Fixes ticket #2687 (Gnome bug #468762).
author | Casey Harkins <charkins@pidgin.im> |
---|---|
date | Thu, 23 Aug 2007 03:06:52 +0000 |
parents | 3432d37a4a77 |
children | e1751162ab1f 315151da0dc6 |
rev | line source |
---|---|
15818 | 1 EXTRA_DIST = \ |
2 getopt.c \ | |
3 getopt.h \ | |
4 getopt1.c | |
5 | |
6 SUBDIRS = libgnt plugins | |
7 | |
16488
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
8 if ENABLE_GNT |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
9 |
15818 | 10 bin_PROGRAMS = finch |
11 | |
16488
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
12 endif |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
13 |
15818 | 14 finch_SOURCES = \ |
15 gntaccount.c \ | |
16 gntblist.c \ | |
17 gntconn.c \ | |
18 gntconv.c \ | |
19 gntdebug.c \ | |
20 gntft.c \ | |
15823 | 21 finch.c \ |
15818 | 22 gntidle.c \ |
23 gntnotify.c \ | |
24 gntplugin.c \ | |
25 gntpounce.c \ | |
26 gntprefs.c \ | |
27 gntrequest.c \ | |
19100 | 28 gntsound.c \ |
15818 | 29 gntstatus.c \ |
30 gntui.c | |
31 | |
32 finch_headers = \ | |
33 gntaccount.h \ | |
34 gntblist.h \ | |
35 gntconn.h \ | |
36 gntconv.h \ | |
37 gntdebug.h \ | |
38 gntft.h \ | |
15823 | 39 finch.h \ |
15818 | 40 gntidle.h \ |
41 gntnotify.h \ | |
42 gntplugin.h \ | |
43 gntpounce.h \ | |
44 gntprefs.h \ | |
45 gntrequest.h \ | |
19100 | 46 gntsound.h \ |
15818 | 47 gntstatus.h \ |
48 gntui.h | |
49 | |
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
|
50 finchincludedir=$(includedir)/finch |
15818 | 51 finchinclude_HEADERS = \ |
52 $(finch_headers) | |
53 | |
54 finch_DEPENDENCIES = @LIBOBJS@ | |
55 finch_LDFLAGS = -export-dynamic | |
56 finch_LDADD = \ | |
57 @LIBOBJS@ \ | |
58 $(DBUS_LIBS) \ | |
59 $(INTLLIBS) \ | |
60 $(GLIB_LIBS) \ | |
61 $(LIBXML_LIBS) \ | |
62 $(GNT_LIBS) \ | |
19100 | 63 $(GSTREAMER_LIBS) \ |
15818 | 64 ./libgnt/libgnt.la \ |
65 $(top_builddir)/libpurple/libpurple.la | |
66 | |
67 AM_CPPFLAGS = \ | |
68 -DSTANDALONE \ | |
69 -DBR_PTHREADS=0 \ | |
70 -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
|
71 -DLIBDIR=\"$(libdir)/finch/\" \ |
15818 | 72 -DLOCALEDIR=\"$(datadir)/locale\" \ |
73 -DSYSCONFDIR=\"$(sysconfdir)\" \ | |
74 -I$(top_srcdir)/libpurple/ \ | |
75 -I$(top_srcdir) \ | |
76 -I$(srcdir)/libgnt/ \ | |
77 $(DEBUG_CFLAGS) \ | |
78 $(GLIB_CFLAGS) \ | |
79 $(DBUS_CFLAGS) \ | |
80 $(LIBXML_CFLAGS) \ | |
19100 | 81 $(GSTREAMER_CFLAGS) \ |
15818 | 82 $(GNT_CFLAGS) |