Mercurial > pidgin
annotate src/protocols/yahoo/Makefile.am @ 12241:4777c5912068
[gaim-migrate @ 14543]
We shouldn't translate the logger name twice. If we let the callers of gaim_log_logger_new() do it (the change that KingAnt just committed), then plugins can translate logger names.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 28 Nov 2005 01:43:53 +0000 |
parents | 7fab28c991f3 |
children | 4aafa0c63898 |
rev | line source |
---|---|
6198
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
1 EXTRA_DIST = \ |
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
2 Makefile.mingw |
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
3 |
2086 | 4 pkgdir = $(libdir)/gaim |
5 | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
6 YAHOOSOURCES = \ |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
7 crypt.c \ |
6513 | 8 yahoo.h \ |
8349 | 9 yahoo_auth.c \ |
10 yahoo_auth.h \ | |
6729 | 11 yahoochat.h \ |
6513 | 12 yahoo.c \ |
6729 | 13 yahoochat.c \ |
7651 | 14 util.c \ |
15 yahoo_filexfer.h \ | |
9161 | 16 yahoo_filexfer.c \ |
9278 | 17 yahoo_friend.h \ |
18 yahoo_friend.c \ | |
10392 | 19 yahoo_packet.h \ |
20 yahoo_packet.c \ | |
11475
7fab28c991f3
[gaim-migrate @ 13717]
Gary Kramlich <grim@reaperworld.com>
parents:
10889
diff
changeset
|
21 yahoo_doodle.h \ |
7fab28c991f3
[gaim-migrate @ 13717]
Gary Kramlich <grim@reaperworld.com>
parents:
10889
diff
changeset
|
22 yahoo_doodle.c \ |
9306 | 23 yahoo_picture.c \ |
24 yahoo_picture.h \ | |
9376 | 25 yahoo_profile.c \ |
26 ycht.c \ | |
27 ycht.h | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
28 |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
29 AM_CFLAGS = $(st) |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
30 |
10889 | 31 libyahoo_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) |
2086 | 32 |
33 if STATIC_YAHOO | |
34 | |
8082 | 35 st = -DGAIM_STATIC_PRPL |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
36 noinst_LIBRARIES = libyahoo.a |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
37 libyahoo_a_SOURCES = $(YAHOOSOURCES) |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
38 libyahoo_a_CFLAGS = $(AM_CFLAGS) |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
2894
diff
changeset
|
39 |
2086 | 40 else |
41 | |
42 st = | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
43 pkg_LTLIBRARIES = libyahoo.la |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
44 libyahoo_la_SOURCES = $(YAHOOSOURCES) |
2086 | 45 |
46 endif | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
47 |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
48 AM_CPPFLAGS = \ |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
49 -I$(top_srcdir)/src \ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
50 $(GLIB_CFLAGS) \ |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
51 $(DEBUG_CFLAGS) |