Mercurial > pidgin
annotate plugins/Makefile.am @ 7011:4375bf2d9020
[gaim-migrate @ 7574]
The user-visible changes? Gaim now shows peep's away messages in their
tooltip for AIM over oscar.
Things to do:
-Make sure this doesn't screw up with huge buddy lists
-Replace %n with your screen name, etc. in the tooltip
-Leave in b, i, u tags in the tooltip
-Fix the 2 8 byte memleaks in locate.c
Client authors that aren't me will want to read the following pretty
closely...
I made some internal libfaim changes. I desire to make libfaim cleaner.
I don't know if this really helps or not. Here's what I've done:
Changed all the SNAC-sending functions in info.c to NOT take a conn
argument. The connection is looked up from the session. I'm trying
to make oscar.c less-aware of connections.
Added aim_locate_finduserinfo() - Use for getting the aim_userinfo_t for the
given screenname.
Added aim_locate_getinfoshort() - Use this to request that the servers send
you profile info, away message, caps, or a combination of the above. It's
like aim_locate_getinfo() but less rate limited.
Renamed aim_bos_reqlocaterights() to aim_locate_reqrights()
Renamed aim_getinfo() to aim_locate_getinfo()
Renamed aim_setdirectoryinfo() to aim_locate_setdirinfo()
Renamed aim_0002_000b() to aim_locate_000b()
Renamed aim_setuserinterests() to aim_locate_setinterests()
Removed aim_userinfo_sn()
Removed aim_userinfo_flags()
Removed aim_userinfo_idle()
Removed aim_userinfo_warnlevel()
Removed aim_userinfo_createtime()
Removed aim_userinfo_membersince()
Removed aim_userinfo_onlinesince()
Removed aim_userinfo_sessionlen()
Removed aim_userinfo_hascap()
Renamed info.c to locate.c
Made locate.c keep a static, linked list of nodes of sn, away message,
available message, user info. This list is maintained by libfaim
automatically. Now clients don't have to keep track of all this stuff
themselves, and users won't have to wait for away message/info retrieval
if the person is in your buddy list. libfaim uses the iChat way of
retrieving stuff, which is not nearly as rate limited as the old way.
I actually have a feeling WinAIM uses the same SNAC now (although I
didn't check), but I like pluggin iChat because it's innovative.
Moved sess->emailinfo to a static variable inside email.c.
Removed evilhack from oscar.c
I think that's about everything...
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 29 Sep 2003 12:30:03 +0000 |
| parents | 81137c6807b6 |
| children | aa619031193b |
| rev | line source |
|---|---|
|
6997
81137c6807b6
[gaim-migrate @ 7553]
Christian Hammond <chipx86@chipx86.com>
parents:
6993
diff
changeset
|
1 DIST_SUBDIRS = docklet gaim-remote gestures perl tcl ticker |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3 if USE_PERL |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
4 PERL_DIR = perl |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
5 endif |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
6 |
| 6694 | 7 if USE_TCL |
| 8 TCL_DIR = tcl | |
| 9 endif | |
| 10 | |
| 11 SUBDIRS = docklet gaim-remote gestures $(PERL_DIR) $(TCL_DIR) ticker | |
| 3391 | 12 |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
13 plugindir = $(libdir)/gaim |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
14 |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
15 autorecon_la_LDFLAGS = -module -avoid-version |
| 6302 | 16 history_la_LDFLAGS = -module -avoid-version |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
17 iconaway_la_LDFLAGS = -module -avoid-version |
| 6302 | 18 idle_la_LDFLAGS = -module -avoid-version |
| 19 notify_la_LDFLAGS = -module -avoid-version | |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
20 spellchk_la_LDFLAGS = -module -avoid-version |
| 6302 | 21 statenotify_la_LDFLAGS = -module -avoid-version |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
22 timestamp_la_LDFLAGS = -module -avoid-version |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
23 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
24 if PLUGINS |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
25 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
26 plugin_LTLIBRARIES = \ |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
27 autorecon.la \ |
| 6302 | 28 history.la \ |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
29 iconaway.la \ |
| 6302 | 30 idle.la \ |
| 31 notify.la \ | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
32 spellchk.la \ |
| 6302 | 33 statenotify.la \ |
| 34 timestamp.la | |
|
5587
1c55b1540e18
[gaim-migrate @ 5991]
Christian Hammond <chipx86@chipx86.com>
parents:
5267
diff
changeset
|
35 |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
36 autorecon_la_SOURCES = autorecon.c |
| 6302 | 37 history_la_SOURCES = history.c |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
38 iconaway_la_SOURCES = iconaway.c |
| 6302 | 39 idle_la_SOURCES = idle.c |
| 40 notify_la_SOURCES = notify.c | |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
41 spellchk_la_SOURCES = spellchk.c |
| 6302 | 42 statenotify_la_SOURCES = statenotify.c |
|
5267
3cd24f012091
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
43 timestamp_la_SOURCES = timestamp.c |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
44 |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
45 endif # PLUGINS |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
46 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
47 EXTRA_DIST = \ |
|
6993
4e78ef5587e4
[gaim-migrate @ 7549]
Christian Hammond <chipx86@chipx86.com>
parents:
6694
diff
changeset
|
48 ChangeLog HOWTO \ |
| 6302 | 49 filectl.c \ |
| 50 mailchk.c \ | |
| 51 gtik.c \ | |
| 52 raw.c \ | |
|
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6386
diff
changeset
|
53 signals-test.c \ |
| 6302 | 54 simple.c \ |
| 55 gaim.pl \ | |
| 56 fortuneprofile.pl | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
57 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
58 AM_CPPFLAGS = \ |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6353
diff
changeset
|
59 -DDATADIR=\"$(datadir)\" \ |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
60 -DVERSION=\"$(VERSION)\" \ |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6353
diff
changeset
|
61 -I$(top_srcdir)/src \ |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
62 $(DEBUG_CFLAGS) \ |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6353
diff
changeset
|
63 $(GTK_CFLAGS) \ |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
64 $(PLUGIN_CFLAGS) |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
65 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
66 # |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
67 # This part allows people to build their own plugins in here. |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
68 # Yes, it's a mess. |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
69 # |
|
392
df5127560034
[gaim-migrate @ 402]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
391
diff
changeset
|
70 SUFFIXES = .c .so |
| 172 | 71 .c.so: |
|
6386
417f35ff8b3e
[gaim-migrate @ 6891]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
72 $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_srcdir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) |
|
2893
abf9303fb328
[gaim-migrate @ 2906]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2867
diff
changeset
|
73 $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) |
|
2342
b1050f14b429
[gaim-migrate @ 2355]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2327
diff
changeset
|
74 @rm -f tmp$@.lo tmp$@.o libtmp$@.la |
|
2476
ec21ec04cdeb
[gaim-migrate @ 2489]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2473
diff
changeset
|
75 @cp .libs/libtmp$@.so* $@ |
|
2342
b1050f14b429
[gaim-migrate @ 2355]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2327
diff
changeset
|
76 @rm -f .libs/libtmp$@.* |
