Mercurial > pidgin
annotate finch/Makefile.am @ 19564:4a1812e1ec35
When you have a certificate dialog and you click on "View Certificate",
re-open the dialog first and then show the certificate second. For me
this causes the certificate to be above the dialog, which seems like
the more common way that window managers would handle this.
I'm using xfwm. What have other people experienced?
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 01 Sep 2007 18:23:12 +0000 |
parents | e1751162ab1f |
children | 8413368adb5a |
rev | line source |
---|---|
15817 | 1 EXTRA_DIST = \ |
2 getopt.c \ | |
3 getopt.h \ | |
4 getopt1.c | |
5 | |
6 SUBDIRS = libgnt plugins | |
7 | |
16480
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
8 if ENABLE_GNT |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
9 |
15817 | 10 bin_PROGRAMS = finch |
11 | |
16480
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
12 endif |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
13 |
15817 | 14 finch_SOURCES = \ |
15 gntaccount.c \ | |
16 gntblist.c \ | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19169
diff
changeset
|
17 gntcertmgr.c \ |
15817 | 18 gntconn.c \ |
19 gntconv.c \ | |
20 gntdebug.c \ | |
21 gntft.c \ | |
15822 | 22 finch.c \ |
15817 | 23 gntidle.c \ |
24 gntnotify.c \ | |
25 gntplugin.c \ | |
26 gntpounce.c \ | |
27 gntprefs.c \ | |
28 gntrequest.c \ | |
19100 | 29 gntsound.c \ |
15817 | 30 gntstatus.c \ |
31 gntui.c | |
32 | |
33 finch_headers = \ | |
34 gntaccount.h \ | |
35 gntblist.h \ | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19169
diff
changeset
|
36 gntcertmgr.h \ |
15817 | 37 gntconn.h \ |
38 gntconv.h \ | |
39 gntdebug.h \ | |
40 gntft.h \ | |
15822 | 41 finch.h \ |
15817 | 42 gntidle.h \ |
43 gntnotify.h \ | |
44 gntplugin.h \ | |
45 gntpounce.h \ | |
46 gntprefs.h \ | |
47 gntrequest.h \ | |
19100 | 48 gntsound.h \ |
15817 | 49 gntstatus.h \ |
50 gntui.h | |
51 | |
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
|
52 finchincludedir=$(includedir)/finch |
15817 | 53 finchinclude_HEADERS = \ |
54 $(finch_headers) | |
55 | |
56 finch_DEPENDENCIES = @LIBOBJS@ | |
57 finch_LDFLAGS = -export-dynamic | |
58 finch_LDADD = \ | |
59 @LIBOBJS@ \ | |
60 $(DBUS_LIBS) \ | |
61 $(INTLLIBS) \ | |
62 $(GLIB_LIBS) \ | |
63 $(LIBXML_LIBS) \ | |
64 $(GNT_LIBS) \ | |
19100 | 65 $(GSTREAMER_LIBS) \ |
15817 | 66 ./libgnt/libgnt.la \ |
67 $(top_builddir)/libpurple/libpurple.la | |
68 | |
69 AM_CPPFLAGS = \ | |
70 -DSTANDALONE \ | |
71 -DBR_PTHREADS=0 \ | |
72 -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
|
73 -DLIBDIR=\"$(libdir)/finch/\" \ |
15817 | 74 -DLOCALEDIR=\"$(datadir)/locale\" \ |
75 -DSYSCONFDIR=\"$(sysconfdir)\" \ | |
76 -I$(top_srcdir)/libpurple/ \ | |
77 -I$(top_srcdir) \ | |
78 -I$(srcdir)/libgnt/ \ | |
79 $(DEBUG_CFLAGS) \ | |
80 $(GLIB_CFLAGS) \ | |
81 $(DBUS_CFLAGS) \ | |
82 $(LIBXML_CFLAGS) \ | |
19100 | 83 $(GSTREAMER_CFLAGS) \ |
15817 | 84 $(GNT_CFLAGS) |