annotate src/Makefile.am @ 142:fbabd28795d2

[gaim-migrate @ 152] Added auto-load for plugins. Rob pointed out this might be a bad idea: what if plugins modify the buddy list; the plugins are loaded before signon, thus before the buddy list appears. That would cause errors; then when the list does appear, the plugin doesn't work right because it didn't start off well. My response: EWarmenhoven: there are ways around that EWarmenhoven: in gaim_plugin_init you could have: EWarmenhoven: if (blist) { do_the_normal_thing(); } else { gaim_signal_connect(handle, event_signon, now_the_buddy_list_is_here, NULL); } EWarmenhoven: and actually, that's the way it should be for all plugins that modify the buddy list, because there will be at least one point during execution that it could be loaded when the person is signed off (and i'm not talking about when they first start it up, i'm talking about when they choose 'sign off' instead of 'close' in the buddy list menu) committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 20 Apr 2000 00:12:58 +0000
parents f5b305c0d974
children 7b5d56a74b71
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
1 if GNOMEAPPLET
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
2 bin_PROGRAMS = gaim_applet
90
f5b305c0d974 [gaim-migrate @ 100]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 82
diff changeset
3 gaim_applet_SOURCES = about.c aim.c away.c browser.c buddy.c buddy_chat.c \
f5b305c0d974 [gaim-migrate @ 100]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 82
diff changeset
4 conversation.c dialogs.c gaimrc.c gnome_applet_mgr.c gtkhtml.c \
f5b305c0d974 [gaim-migrate @ 100]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 82
diff changeset
5 html.c idle.c network.c oscar.c plugins.c prefs.c proxy.c server.c \
f5b305c0d974 [gaim-migrate @ 100]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 82
diff changeset
6 sound.c toc.c util.c
31
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
7 else
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
8 bin_PROGRAMS = gaim
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
9 gaim_SOURCES = about.c aim.c away.c buddy.c buddy_chat.c conversation.c \
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
10 dialogs.c html.c prefs.c proxy.c toc.c sound.c gaim.h \
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
11 plugins.c network.c server.c browser.c util.c oscar.c gtkhtml.c \
60
9b6127c08bcf [gaim-migrate @ 70]
Rob Flynn <gaim@robflynn.com>
parents: 31
diff changeset
12 idle.c gaimrc.c gnome_applet_mgr.c
31
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
13 endif
61e94e1bd4c8 [gaim-migrate @ 40]
Eric Warmenhoven <eric@warmenhoven.org>
parents: 1
diff changeset
14
1
2846a03bda67 [gaim-migrate @ 10]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
15
2846a03bda67 [gaim-migrate @ 10]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
16 CFLAGS += $(GAIM_CFLAGS)
2846a03bda67 [gaim-migrate @ 10]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
17 LIBS += $(GAIM_LIBS)
2846a03bda67 [gaim-migrate @ 10]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
18 LDADD += $(GAIM_LDADD)
2846a03bda67 [gaim-migrate @ 10]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
19
2846a03bda67 [gaim-migrate @ 10]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
20 EXTRA_DIST = gaim.h proxy.h gnome_applet_mgr.h gtkhtml.h