Mercurial > pidgin
annotate src/protocols/jabber/Makefile.am @ 5129:c19cc54f4df6
[gaim-migrate @ 5492]
Stuff I did (in order from most important to least):
-Made set away message and set profile count the number of bytes
rather than the number of characters. This fixes the lack of a
warning dialog when setting info that needs an encoding other than
ascii or iso8859-1. (Because "hi" in UCS-2BE is 4 bytes but "hi"
in utf8 is only 2.)
-Created an oscar_encoding_to_utf8 function to convert from a given
encoding to utf8. This is AIM/ICQ specific.
-Added a "Profile:" and "Away Message:" line to the get info response
window. Is it better this way or without it? I thought it would be
good if there was a way for users to tell which text was the away
message and which was the info, but I also think this solution could
be nicer looking.
-Added a little check for some server icon stuff because someone
reported an obscure crash.
-Shuffled some stuff around in oscar.c
-Bouldered on the little wall outside of the gym today. It's much
more difficult than climbing inside. I think my forearms are just
a bit too weak. The holds are tiny, though.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 14 Apr 2003 04:52:42 +0000 |
| parents | 59751fe608c5 |
| children | fcc28f5dd0c8 |
| rev | line source |
|---|---|
| 2086 | 1 EXTRA_DIST = xmltok_impl.c xmltok_ns.c |
| 2 | |
| 3 pkgdir = $(libdir)/gaim | |
| 4 | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
5 JABBERSOURCES = \ |
| 2086 | 6 asciitab.h \ |
| 7 expat.c \ | |
| 8 genhash.c \ | |
| 9 hashtable.c \ | |
| 10 hashtable.h \ | |
| 3127 | 11 karma.c \ |
| 2086 | 12 iasciitab.h \ |
| 13 latin1tab.h \ | |
| 3127 | 14 lib.h \ |
| 2086 | 15 libxode.h \ |
| 16 nametab.h \ | |
| 17 pool.c \ | |
| 18 sha.c \ | |
| 19 snprintf.c \ | |
| 20 socket.c \ | |
| 21 str.c \ | |
| 22 utf8tab.h \ | |
| 3127 | 23 xhash.c \ |
| 2086 | 24 xmldef.h \ |
| 25 xmlnode.c \ | |
| 26 xmlparse.c \ | |
| 27 xmlparse.h \ | |
| 28 xmlrole.c \ | |
| 29 xmlrole.h \ | |
| 30 xmltok.c \ | |
| 31 xmltok.h \ | |
| 32 xmltok_impl.h \ | |
| 33 xstream.c \ | |
| 34 \ | |
| 35 jabber.h \ | |
| 36 jconn.c \ | |
| 37 jid.c \ | |
| 38 jpacket.c \ | |
| 39 jutil.c \ | |
| 40 log.c \ | |
| 41 log.h \ | |
| 42 pproxy.c \ | |
| 43 rate.c \ | |
| 44 \ | |
| 45 jabber.c | |
| 46 | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
47 AM_CFLAGS = $(st) |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
48 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
49 libjabber_la_LDFLAGS = -module -avoid-version |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
50 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
51 if STATIC_JABBER |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
52 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
53 st = -DSTATIC |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
54 noinst_LIBRARIES = libjabber.a |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
55 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
56 libjabber_a_SOURCES = $(JABBERSOURCES) |
|
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3127
diff
changeset
|
57 libjabber_a_CFLAGS = $(AM_CFLAGS) |
|
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3127
diff
changeset
|
58 |
| 2086 | 59 else |
| 60 | |
| 61 st = | |
| 62 pkg_LTLIBRARIES = libjabber.la | |
| 63 | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
64 libjabber_la_SOURCES = $(JABBERSOURCES) |
| 2086 | 65 |
| 66 endif | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
67 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
68 AM_CPPFLAGS = \ |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
69 -I$(top_srcdir)/src \ |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
70 $(DEBUG_CFLAGS) |
