Mercurial > pidgin
annotate console/Makefile.am @ 14995:0d9f69b23352
[gaim-migrate @ 17774]
The data for "plugin_action" is set with a destructor function. So freeing it
twice would cause a crash. The reason it's not crashing is, the children of the
container are not the menuitems, but GtkAccelLabel (or some such thing). So all
we are doing is freeing null. Also, when the menu is destroyed, all the
menuitems are also destroyed anyway. So get rid of the unrequired loop.
Also, isdigit expects a character, not a string.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 18 Nov 2006 05:30:57 +0000 |
parents | bcf89a7c69db |
children | be2feab10c71 |
rev | line source |
---|---|
14206
c2b3ecb1a99b
[gaim-migrate @ 16880]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
14192
diff
changeset
|
1 if ENABLE_GNT |
c2b3ecb1a99b
[gaim-migrate @ 16880]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
14192
diff
changeset
|
2 |
14227 | 3 SUBDIRS = libgnt plugins |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
4 |
14585 | 5 bin_PROGRAMS = gaim-text |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
6 |
14585 | 7 gaim_text_SOURCES = \ |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
8 gntaccount.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
9 gntblist.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
10 gntconn.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
11 gntconv.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
12 gntdebug.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
13 gntgaim.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
14 gntnotify.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
15 gntplugin.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
16 gntprefs.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
17 gntrequest.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
18 gntstatus.c \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
19 gntui.c |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
20 |
14585 | 21 gaim_text_headers = \ |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
22 gntaccount.h \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
23 gntblist.h \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
24 gntconn.h \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
25 gntconv.h \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
26 gntdebug.h \ |
14507 | 27 gntgaim.h \ |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
28 gntnotify.h \ |
14490 | 29 gntplugin.h \ |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
30 gntprefs.h \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
31 gntrequest.h \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
32 gntstatus.h \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
33 gntui.h |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
34 |
14585 | 35 gaim_textincludedir=$(includedir)/gaim/gnt |
36 gaim_textinclude_HEADERS = \ | |
37 $(gaim_text_headers) | |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
38 |
14585 | 39 gaim_text_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) |
40 gaim_text_LDFLAGS = -export-dynamic | |
41 gaim_text_LDADD = \ | |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
42 @LIBOBJS@ \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
43 $(DBUS_LIBS) \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
44 $(STATIC_LINK_LIBS) \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
45 $(INTLLIBS) \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
46 $(GLIB_LIBS) \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
47 $(LIBXML_LIBS) \ |
14228 | 48 $(GNT_LIBS) \ |
14435
9c6533500fff
[gaim-migrate @ 17149]
Gary Kramlich <grim@reaperworld.com>
parents:
14428
diff
changeset
|
49 ./libgnt/libgnt.la \ |
9c6533500fff
[gaim-migrate @ 17149]
Gary Kramlich <grim@reaperworld.com>
parents:
14428
diff
changeset
|
50 $(top_builddir)/libgaim/libgaim.la |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
51 |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
52 AM_CPPFLAGS = \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
53 -DSTANDALONE \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
54 -DBR_PTHREADS=0 \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
55 -DDATADIR=\"$(datadir)\" \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
56 -DLIBDIR=\"$(libdir)/gaim/\" \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
57 -DLOCALEDIR=\"$(datadir)/locale\" \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
58 -DSYSCONFDIR=\"$(sysconfdir)\" \ |
14192
60b1bc8dbf37
[gaim-migrate @ 16863]
Evan Schoenberg <evan.s@dreskin.net>
parents:
14191
diff
changeset
|
59 -I$(top_srcdir)/libgaim/ \ |
14270
4c82afb76534
[gaim-migrate @ 16953]
Richard Laager <rlaager@wiktel.com>
parents:
14228
diff
changeset
|
60 -I$(top_srcdir) \ |
4c82afb76534
[gaim-migrate @ 16953]
Richard Laager <rlaager@wiktel.com>
parents:
14228
diff
changeset
|
61 -I$(srcdir)/libgnt/ \ |
14191
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
62 $(DEBUG_CFLAGS) \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
63 $(GLIB_CFLAGS) \ |
009db0b357b5
This is a hand-crafted commit to migrate across subversion revisions
Ethan Blanton <elb@pidgin.im>
parents:
diff
changeset
|
64 $(DBUS_CFLAGS) \ |
14428
f3645fe3da47
[gaim-migrate @ 17142]
Gary Kramlich <grim@reaperworld.com>
parents:
14270
diff
changeset
|
65 $(LIBXML_CFLAGS) \ |
f3645fe3da47
[gaim-migrate @ 17142]
Gary Kramlich <grim@reaperworld.com>
parents:
14270
diff
changeset
|
66 $(GNT_CFLAGS) |
14206
c2b3ecb1a99b
[gaim-migrate @ 16880]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
14192
diff
changeset
|
67 endif |