Mercurial > pidgin
annotate plugins/docklet/Makefile.am @ 9740:2bb5e2cd64bd
[gaim-migrate @ 10605]
" A few days back, someone on #gaim was wondering how to
block IM's from IRC, which isn't supported by gaim, as
this isn't supported at a protocol level. I decided to
implement gaim's privacy options (permit lists, deny
lists, block all users, and permit people on buddy
list) at a local level for IRC and
Zephyr. Jabber, SILC, and Trepia don't seem to support
deny or permit lists in Gaim, but I don't use the
latter two protocols and wasn't sure about how to
implemnt in in Jabber.
When implementing it, I noticed that changes in privacy
settings didn't automatically cause blist.xml to get
scheduled
for writing (even on exit). To fix this, I needed to
make schedule_blist_save in blist.c non-static and call
it from serv_set_permit_deny() in server.c, and
gaim_privacy_{permit,deny}_{add,remove} in privacy.c ." --Arun A Tharuvai
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Wed, 11 Aug 2004 23:52:48 +0000 |
| parents | 8f94cce8faa5 |
| children | 2cc05a9e944d |
| rev | line source |
|---|---|
|
6198
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6077
diff
changeset
|
1 EXTRA_DIST = \ |
|
6219
30326e667577
[gaim-migrate @ 6706]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6215
diff
changeset
|
2 Makefile.mingw \ |
|
30326e667577
[gaim-migrate @ 6706]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6215
diff
changeset
|
3 docklet-win32.c |
|
6198
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6077
diff
changeset
|
4 |
| 3510 | 5 plugindir = $(libdir)/gaim |
| 6 | |
| 7 docklet_la_LDFLAGS = -module -avoid-version | |
| 8 | |
| 9 if PLUGINS | |
| 10 | |
| 11 plugin_LTLIBRARIES = docklet.la | |
| 12 | |
| 13 docklet_la_SOURCES = \ | |
|
6208
3e3ee3cba192
[gaim-migrate @ 6694]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6198
diff
changeset
|
14 eggtrayicon.h \ |
|
3e3ee3cba192
[gaim-migrate @ 6694]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6198
diff
changeset
|
15 eggtrayicon.c \ |
|
6077
b2c8e08508af
[gaim-migrate @ 6536]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
16 docklet.h \ |
| 3510 | 17 docklet.c \ |
|
6208
3e3ee3cba192
[gaim-migrate @ 6694]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6198
diff
changeset
|
18 docklet-x11.c |
| 3510 | 19 |
| 20 endif | |
| 21 | |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
22 AM_CPPFLAGS = \ |
|
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
23 -DDATADIR=\"$(datadir)\" \ |
| 3510 | 24 -DVERSION=\"$(VERSION)\" \ |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
25 -I$(top_srcdir)/src \ |
|
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
26 $(DEBUG_CFLAGS) \ |
|
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6219
diff
changeset
|
27 $(GTK_CFLAGS) |
