Sun, 01 Feb 2009 08:25:57 +0000
Move some MSN message handlers from switchboard to general msg.c.
References #7676.
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
1 | EXTRA_DIST = \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
2 | Makefile.mingw \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
3 | README \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
4 | TODO |
| 8849 | 5 | |
|
16651
218fe51ae7b7
soname versioning of libpurple. Should help resolve debian bug 421282
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16364
diff
changeset
|
6 | pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) |
| 8849 | 7 | |
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
8 | SILCSOURCES = \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
9 | buddy.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
10 | chat.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
11 | ft.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
12 | ops.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
13 | pk.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
14 | silc.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
15 | silcpurple.h \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
16 | util.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
17 | wb.c \ |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
18 | wb.h |
| 8849 | 19 | |
| 20 | AM_CFLAGS = $(st) | |
| 21 | ||
|
15946
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
22 | libsilcpurple_la_LDFLAGS = -module -avoid-version |
| 8849 | 23 | |
| 8857 | 24 | if STATIC_SILC |
| 8849 | 25 | |
|
15947
15efedafba00
s/GAIM_STATIC_PRPL/PURPLE_STATIC_PRPL/ in prpl Makefiles
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15946
diff
changeset
|
26 | st = -DPURPLE_STATIC_PRPL $(SILC_CFLAGS) |
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
27 | noinst_LTLIBRARIES = libsilcpurple.la |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
28 | libsilcpurple_la_SOURCES = $(SILCSOURCES) |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
29 | libsilcpurple_la_CFLAGS = $(AM_CFLAGS) |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
30 | libsilcpurple_la_LIBADD = $(SILC_LIBS) |
| 8849 | 31 | |
| 32 | else | |
| 33 | ||
| 9905 | 34 | st = $(SILC_CFLAGS) |
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
35 | pkg_LTLIBRARIES = libsilcpurple.la |
|
15946
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
36 | libsilcpurple_la_SOURCES = $(SILCSOURCES) |
|
d40e8847e825
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
37 | libsilcpurple_la_LIBADD = $(GLIB_LIBS) $(SILC_LIBS) |
| 8849 | 38 | |
| 39 | endif | |
| 40 | ||
| 41 | AM_CPPFLAGS = \ | |
| 15472 | 42 | -I$(top_srcdir)/libpurple \ |
|
16810
7f257f18af06
Now that version.h is a generated source file, we need to add
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16651
diff
changeset
|
43 | -I$(top_builddir)/libpurple \ |
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
44 | $(DEBUG_CFLAGS) \ |
| 8849 | 45 | $(GLIB_CFLAGS) \ |
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
46 | $(SILC_CFLAGS) |