Sun, 26 Aug 2007 06:51:17 +0000
In msimprpl, move formatting functions to a markup module. It only exposes
two functions to convert between MySpaceIM markup and Purple HTML markup.
|
17889
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
1 | EXTRA_DIST = Makefile.mingw |
| 16322 | 2 | |
|
17889
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
3 | pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) |
| 16322 | 4 | |
|
19616
017838ce7393
In msimprpl, move zap-related code to a separate module.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
17902
diff
changeset
|
5 | SOURCES = myspace.c \ |
|
017838ce7393
In msimprpl, move zap-related code to a separate module.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
17902
diff
changeset
|
6 | myspace.h \ |
|
19618
6c85c0b3b101
In msimprpl, move formatting functions to a markup module. It only exposes
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19617
diff
changeset
|
7 | persist.h \ |
|
19616
017838ce7393
In msimprpl, move zap-related code to a separate module.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
17902
diff
changeset
|
8 | message.c \ |
|
017838ce7393
In msimprpl, move zap-related code to a separate module.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
17902
diff
changeset
|
9 | message.h \ |
|
017838ce7393
In msimprpl, move zap-related code to a separate module.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
17902
diff
changeset
|
10 | zap.c \ |
|
19617
c2da44d56312
In msimprpl, move session-related functions to a new session module.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19616
diff
changeset
|
11 | session.c \ |
|
c2da44d56312
In msimprpl, move session-related functions to a new session module.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19616
diff
changeset
|
12 | session.h \ |
|
19618
6c85c0b3b101
In msimprpl, move formatting functions to a markup module. It only exposes
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19617
diff
changeset
|
13 | markup.c \ |
|
6c85c0b3b101
In msimprpl, move formatting functions to a markup module. It only exposes
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19617
diff
changeset
|
14 | markup.h |
| 16322 | 15 | |
| 16 | AM_CFLAGS = $(st) | |
| 17 | ||
|
17889
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
18 | libmyspace_la_LDFLAGS = -module -avoid-version |
| 16322 | 19 | |
| 20 | if STATIC_MYSPACE | |
| 21 | ||
| 16324 | 22 | st = -DPURPLE_STATIC_PRPL |
|
17889
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
23 | noinst_LIBRARIES = libmyspace.a |
|
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
24 | libmyspace_a_SOURCES = $(SOURCES) |
|
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
25 | libmyspace_a_CFLAGS = $(AM_CFLAGS) |
| 16322 | 26 | |
| 27 | else | |
| 28 | ||
| 29 | st = | |
|
17889
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
30 | pkg_LTLIBRARIES = libmyspace.la |
|
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
31 | libmyspace_la_SOURCES = $(SOURCES) |
|
9ec0823e7fab
Update for Pidgin 2.0.0beta7.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
16330
diff
changeset
|
32 | libmyspace_la_LIBADD = $(GLIB_LIBS) |
| 16322 | 33 | |
| 34 | endif | |
| 35 | ||
| 36 | AM_CPPFLAGS = \ | |
| 16324 | 37 | -I$(top_srcdir)/libpurple \ |
| 16322 | 38 | $(GLIB_CFLAGS) \ |
| 39 | $(DEBUG_CFLAGS) |