Mercurial > pidgin
annotate libpurple/protocols/myspace/Makefile.am @ 19628:4c5e7db85e29
For status messages, make sure NULL isn't passed to g_markup_escape_text().
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Wed, 05 Sep 2007 04:18:59 +0000 |
parents | bddc6a6fddf0 |
children | 65e12a6f00ca 315151da0dc6 |
rev | line source |
---|---|
16722
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
1 EXTRA_DIST = Makefile.mingw |
16394 | 2 |
16722
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
3 pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) |
16394 | 4 |
19432
210f792efd7c
In msimprpl, move zap-related code to a separate module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16735
diff
changeset
|
5 SOURCES = myspace.c \ |
210f792efd7c
In msimprpl, move zap-related code to a separate module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16735
diff
changeset
|
6 myspace.h \ |
19434
1e00b684c46f
In msimprpl, move formatting functions to a markup module. It only exposes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19433
diff
changeset
|
7 persist.h \ |
19432
210f792efd7c
In msimprpl, move zap-related code to a separate module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16735
diff
changeset
|
8 message.c \ |
210f792efd7c
In msimprpl, move zap-related code to a separate module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16735
diff
changeset
|
9 message.h \ |
210f792efd7c
In msimprpl, move zap-related code to a separate module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16735
diff
changeset
|
10 zap.c \ |
19433
9a1b28a10c95
In msimprpl, move session-related functions to a new session module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19432
diff
changeset
|
11 session.c \ |
9a1b28a10c95
In msimprpl, move session-related functions to a new session module.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19432
diff
changeset
|
12 session.h \ |
19434
1e00b684c46f
In msimprpl, move formatting functions to a markup module. It only exposes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19433
diff
changeset
|
13 markup.c \ |
19435
bddc6a6fddf0
In msimprpl, move user-related code to a new user module, and move other
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19434
diff
changeset
|
14 markup.h \ |
bddc6a6fddf0
In msimprpl, move user-related code to a new user module, and move other
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19434
diff
changeset
|
15 user.c \ |
bddc6a6fddf0
In msimprpl, move user-related code to a new user module, and move other
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19434
diff
changeset
|
16 user.h |
16394 | 17 |
18 AM_CFLAGS = $(st) | |
19 | |
16722
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
20 libmyspace_la_LDFLAGS = -module -avoid-version |
16394 | 21 |
22 if STATIC_MYSPACE | |
23 | |
16396 | 24 st = -DPURPLE_STATIC_PRPL |
16722
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
25 noinst_LIBRARIES = libmyspace.a |
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
26 libmyspace_a_SOURCES = $(SOURCES) |
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
27 libmyspace_a_CFLAGS = $(AM_CFLAGS) |
16394 | 28 |
29 else | |
30 | |
31 st = | |
16722
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
32 pkg_LTLIBRARIES = libmyspace.la |
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
33 libmyspace_la_SOURCES = $(SOURCES) |
ba7d6317da76
Update for Pidgin 2.0.0beta7.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
16402
diff
changeset
|
34 libmyspace_la_LIBADD = $(GLIB_LIBS) |
16394 | 35 |
36 endif | |
37 | |
38 AM_CPPFLAGS = \ | |
16396 | 39 -I$(top_srcdir)/libpurple \ |
16394 | 40 $(GLIB_CFLAGS) \ |
41 $(DEBUG_CFLAGS) |