comparison libpurple/protocols/msnp9/Makefile.am @ 21312:a07cfce78345

Add MSNP9 back as an alternative alongside the existing MSN prpl. Cowardly old fools like me who prefer the stability of our MSNP9 code over the features of MSNP14 can enable this using the --disable-msnp14 ./configure option. If we want to release from i.p.p and MSN stability is the only blocker, we can trivially flick the default to use MSNP9 in configure.ac
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 11 Nov 2007 12:57:52 +0000
parents
children 2b62300d2c19 750d700098c1
comparison
equal deleted inserted replaced
21311:7d031cec5ba2 21312:a07cfce78345
1 EXTRA_DIST = \
2 Makefile.mingw
3
4 pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
5
6 MSNP9SOURCES = \
7 cmdproc.c \
8 cmdproc.h \
9 command.c \
10 command.h \
11 dialog.c \
12 dialog.h \
13 directconn.c \
14 directconn.h \
15 error.c \
16 error.h \
17 group.c \
18 group.h \
19 history.c \
20 history.h \
21 httpconn.c \
22 httpconn.h \
23 msg.c \
24 msg.h \
25 msn.c \
26 msn.h \
27 nexus.c \
28 nexus.h \
29 notification.c \
30 notification.h \
31 object.c \
32 object.h \
33 page.c \
34 page.h \
35 servconn.c \
36 servconn.h \
37 session.c \
38 session.h \
39 slp.c \
40 slp.h \
41 slpcall.c \
42 slpcall.h \
43 slplink.c \
44 slplink.h \
45 slpmsg.c \
46 slpmsg.h \
47 slpsession.c \
48 slpsession.h \
49 state.c \
50 state.h \
51 switchboard.c \
52 switchboard.h \
53 sync.c \
54 sync.h \
55 table.c \
56 table.h \
57 transaction.c \
58 transaction.h \
59 user.c \
60 user.h \
61 userlist.c \
62 userlist.h \
63 msn-utils.c \
64 msn-utils.h
65
66 AM_CFLAGS = $(st)
67
68 libmsn_la_LDFLAGS = -module -avoid-version
69
70 if STATIC_MSN
71
72 st = -DPURPLE_STATIC_PRPL
73 noinst_LIBRARIES = libmsn.a
74 libmsn_a_SOURCES = $(MSNP9SOURCES)
75 libmsn_a_CFLAGS = $(AM_CFLAGS)
76
77 else
78
79 st =
80 pkg_LTLIBRARIES = libmsn.la
81 libmsn_la_SOURCES = $(MSNP9SOURCES)
82 libmsn_la_LIBADD = $(GLIB_LIBS)
83
84 endif
85
86 AM_CPPFLAGS = \
87 -I$(top_srcdir)/libpurple \
88 -I$(top_builddir)/libpurple \
89 $(GLIB_CFLAGS) \
90 $(DEBUG_CFLAGS)