comparison plugins/Makefile.am @ 6302:511003c99302

[gaim-migrate @ 6801] Notify plugin. It seems to work pretty well for me. One thing I did notice, it doesn't really handle getting IMs from different people very well. It makes a different counter in title of the IM for each person, and then only updates the most recently added one. I also didn't try chat stuff at all, but I need to go to sleep pretty soon. Pretty much all of the changes were done by Brian Tarricon, I just renamed a few things and did a few other patent-pending actions. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 25 Jul 2003 04:30:52 +0000
parents 6e2f46de5e38
children 9b2c2495687a
comparison
equal deleted inserted replaced
6301:0e60f9b2e6eb 6302:511003c99302
7 SUBDIRS = docklet gaim-remote gestures $(PERL_DIR) ticker 7 SUBDIRS = docklet gaim-remote gestures $(PERL_DIR) ticker
8 8
9 plugindir = $(libdir)/gaim 9 plugindir = $(libdir)/gaim
10 10
11 autorecon_la_LDFLAGS = -module -avoid-version 11 autorecon_la_LDFLAGS = -module -avoid-version
12 history_la_LDFLAGS = -module -avoid-version
12 iconaway_la_LDFLAGS = -module -avoid-version 13 iconaway_la_LDFLAGS = -module -avoid-version
13 #notify_la_LDFLAGS = -module -avoid-version 14 idle_la_LDFLAGS = -module -avoid-version
15 notify_la_LDFLAGS = -module -avoid-version
14 spellchk_la_LDFLAGS = -module -avoid-version 16 spellchk_la_LDFLAGS = -module -avoid-version
15 history_la_LDFLAGS = -module -avoid-version 17 statenotify_la_LDFLAGS = -module -avoid-version
16 timestamp_la_LDFLAGS = -module -avoid-version 18 timestamp_la_LDFLAGS = -module -avoid-version
17 idle_la_LDFLAGS = -module -avoid-version
18 statenotify_la_LDFLAGS = -module -avoid-version
19 19
20 if PLUGINS 20 if PLUGINS
21 21
22 plugin_LTLIBRARIES = \ 22 plugin_LTLIBRARIES = \
23 autorecon.la \ 23 autorecon.la \
24 history.la \
24 iconaway.la \ 25 iconaway.la \
26 idle.la \
27 notify.la \
25 spellchk.la \ 28 spellchk.la \
26 history.la \ 29 statenotify.la \
27 timestamp.la \ 30 timestamp.la
28 idle.la \
29 statenotify.la
30
31 # notify.la
32 31
33 autorecon_la_SOURCES = autorecon.c 32 autorecon_la_SOURCES = autorecon.c
33 history_la_SOURCES = history.c
34 iconaway_la_SOURCES = iconaway.c 34 iconaway_la_SOURCES = iconaway.c
35 #notify_la_SOURCES = notify.c 35 idle_la_SOURCES = idle.c
36 notify_la_SOURCES = notify.c
36 spellchk_la_SOURCES = spellchk.c 37 spellchk_la_SOURCES = spellchk.c
37 history_la_SOURCES = history.c 38 statenotify_la_SOURCES = statenotify.c
38 timestamp_la_SOURCES = timestamp.c 39 timestamp_la_SOURCES = timestamp.c
39 idle_la_SOURCES = idle.c
40 statenotify_la_SOURCES = statenotify.c
41 40
42 endif # PLUGINS 41 endif # PLUGINS
43 42
44 EXTRA_DIST = \ 43 EXTRA_DIST = \
45 ChangeLog PERL-HOWTO HOWTO SIGNALS \ 44 ChangeLog PERL-HOWTO HOWTO SIGNALS \
46 filectl.c mailchk.c gtik.c \ 45 filectl.c \
47 raw.c events.c simple.c \ 46 mailchk.c \
48 gaim.pl fortuneprofile.pl 47 gtik.c \
48 raw.c \
49 events.c \
50 simple.c \
51 gaim.pl \
52 fortuneprofile.pl
49 53
50 AM_CPPFLAGS = \ 54 AM_CPPFLAGS = \
51 -I$(top_srcdir)/src \ 55 -I$(top_srcdir)/src \
52 -DVERSION=\"$(VERSION)\" \ 56 -DVERSION=\"$(VERSION)\" \
53 $(DEBUG_CFLAGS) \ 57 $(DEBUG_CFLAGS) \