annotate plugins/ticker/Makefile.am @ 5943:a4f2aba0848d

[gaim-migrate @ 6384] This should fix corruption in the blist, accounts, and pounces when some protocol plugins cannot load. Some parts of gaim now use the new unique Plugin or Protocol Plugin IDs, while some still use the old protocol numbers. Accounts kind of used both, and when prpls were missing, it had trouble finding accounts. It would find the names, even without mapping the protocol numbers to IDs, and any duplicate accounts would get nuked. That would then affect pounce saving. Anyhow, long story short (well, it's already long, too late for that), this should fix all that mess. And introduce new mess, but hopefully temporary mess. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 23 Jun 2003 02:00:15 +0000
parents 283fb289c510
children fcc28f5dd0c8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3391
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
1 plugindir = $(libdir)/gaim
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
2
3399
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
3 ticker_la_LDFLAGS = -module -avoid-version
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
4
3391
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
5 if PLUGINS
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
6
3399
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
7 plugin_LTLIBRARIES = ticker.la
3391
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
8
3399
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
9 ticker_la_SOURCES = \
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
10 gtkticker.c \
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
11 gtkticker.h \
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
12 ticker.c
3391
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
13
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
14 endif
412d1035d666 [gaim-migrate @ 3410]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
15
4687
283fb289c510 [gaim-migrate @ 4998]
Sean Egan <seanegan@gmail.com>
parents: 4202
diff changeset
16 CFLAGS += $(DEBUG_CFLAGS) -DDATADIR=\"$(datadir)\"
283fb289c510 [gaim-migrate @ 4998]
Sean Egan <seanegan@gmail.com>
parents: 4202
diff changeset
17
4202
59751fe608c5 [gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents: 3399
diff changeset
18
3399
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
19 INCLUDES = \
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
20 -I$(top_srcdir) \
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
21 -I$(top_srcdir)/src \
8d211ff092cb [gaim-migrate @ 3418]
Christian Hammond <chipx86@chipx86.com>
parents: 3391
diff changeset
22 -DVERSION=\"$(VERSION)\"