Mercurial > pidgin
annotate src/protocols/jabber/Makefile.am @ 12060:f7d2f637ff03
[gaim-migrate @ 14355]
sadrul writes:
This patch shows the last-used status-message for an
account in the account-specific statusbox.
It also hides the entry-box when there's no message in
it after the timeout. It'll be possible to bring it
back up by clicking on the statusbox with patch #1345942
Since I think 1345942 is still being debating, there's no way to get the
message box back after it disappears (except switching statuses). But this
is CVS, and there's another patch pending, so...
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Sun, 13 Nov 2005 00:05:44 +0000 |
parents | 2cc05a9e944d |
children | 5cfc53ead482 |
rev | line source |
---|---|
7231
79e33c8ecf16
[gaim-migrate @ 7803]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7170
diff
changeset
|
1 EXTRA_DIST = \ |
79e33c8ecf16
[gaim-migrate @ 7803]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7170
diff
changeset
|
2 Makefile.mingw \ |
79e33c8ecf16
[gaim-migrate @ 7803]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7170
diff
changeset
|
3 win32/posix.uname.c \ |
79e33c8ecf16
[gaim-migrate @ 7803]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7170
diff
changeset
|
4 win32/utsname.h |
2086 | 5 |
6 pkgdir = $(libdir)/gaim | |
7 | |
7014 | 8 JABBERSOURCES = auth.c \ |
9 auth.h \ | |
10 buddy.c \ | |
11 buddy.h \ | |
12 chat.c \ | |
13 chat.h \ | |
8312 | 14 disco.c \ |
15 disco.h \ | |
7014 | 16 iq.c \ |
17 iq.h \ | |
18 jabber.c \ | |
19 jabber.h \ | |
20 jutil.c \ | |
21 jutil.h \ | |
22 message.c \ | |
23 message.h \ | |
7170 | 24 oob.c \ |
25 oob.h \ | |
7014 | 26 parser.c \ |
27 parser.h \ | |
28 presence.c \ | |
29 presence.h \ | |
30 roster.c \ | |
7395 | 31 roster.h \ |
32 si.c \ | |
7923 | 33 si.h \ |
34 xdata.c \ | |
35 xdata.h | |
2086 | 36 |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
37 AM_CFLAGS = $(st) |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
38 |
10889 | 39 libjabber_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
40 |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
41 if STATIC_JABBER |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
42 |
8082 | 43 st = -DGAIM_STATIC_PRPL |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
44 noinst_LIBRARIES = libjabber.a |
7014 | 45 pkg_LTLIBRARIES = |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
46 |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
47 libjabber_a_SOURCES = $(JABBERSOURCES) |
7014 | 48 libjabber_a_CFLAGS = $(AM_CFLAGS) |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3127
diff
changeset
|
49 |
2086 | 50 else |
51 | |
52 st = | |
53 pkg_LTLIBRARIES = libjabber.la | |
7014 | 54 noinst_LIBRARIES = |
2086 | 55 |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
56 libjabber_la_SOURCES = $(JABBERSOURCES) |
2086 | 57 |
58 endif | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
59 |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
60 AM_CPPFLAGS = \ |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
61 -I$(top_srcdir)/src \ |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6198
diff
changeset
|
62 $(DEBUG_CFLAGS) \ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
63 $(GLIB_CFLAGS) |