Wed, 13 May 2009 20:29:03 +0000
Support custom smileys in MUCs (when all participants support BoB and a maximum
of 10 participants are in the chat).
Always announce support for BoB, since disable custom smileys will still turn
off fetching them, and BoB can be used for other purposes further on.
| 8675 | 1 | EXTRA_DIST = \ |
|
24609
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 |
| 8675 | 3 | |
|
16651
218fe51ae7b7
soname versioning of libpurple. Should help resolve debian bug 421282
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16364
diff
changeset
|
4 | pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) |
| 8675 | 5 | |
| 6 | NOVELLSOURCES = \ | |
| 7 | nmfield.h \ | |
| 8 | nmfield.c \ | |
| 9 | nmconn.h \ | |
| 10 | nmconn.c \ | |
| 11 | nmconference.h \ | |
| 12 | nmconference.c \ | |
| 13 | nmcontact.h \ | |
| 14 | nmcontact.c \ | |
| 15 | nmevent.h \ | |
| 16 | nmevent.c \ | |
| 17 | nmmessage.h \ | |
| 18 | nmmessage.c \ | |
| 19 | nmrequest.h \ | |
| 20 | nmrequest.c \ | |
|
9268
196cbf2cae4c
[gaim-migrate @ 10069]
Mike Stoddard <mistoddard@novell.com>
parents:
8683
diff
changeset
|
21 | nmrtf.h \ |
|
196cbf2cae4c
[gaim-migrate @ 10069]
Mike Stoddard <mistoddard@novell.com>
parents:
8683
diff
changeset
|
22 | nmrtf.c \ |
| 8675 | 23 | nmuser.h \ |
| 24 | nmuser.c \ | |
| 25 | nmuserrecord.h \ | |
| 26 | nmuserrecord.c \ | |
| 27 | novell.c | |
| 28 | ||
| 29 | AM_CFLAGS = $(st) | |
| 30 | ||
|
14736
90fe3dd8e9db
[gaim-migrate @ 17420]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
14254
diff
changeset
|
31 | libnovell_la_LDFLAGS = -module -avoid-version |
| 8675 | 32 | |
| 33 | if STATIC_NOVELL | |
| 34 | ||
|
15947
15efedafba00
s/GAIM_STATIC_PRPL/PURPLE_STATIC_PRPL/ in prpl Makefiles
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15523
diff
changeset
|
35 | st = -DPURPLE_STATIC_PRPL |
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
36 | noinst_LTLIBRARIES = libnovell.la |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
37 | libnovell_la_SOURCES = $(NOVELLSOURCES) |
|
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
38 | libnovell_la_CFLAGS = $(AM_CFLAGS) |
| 8675 | 39 | |
| 40 | else | |
| 41 | ||
| 42 | st = | |
|
24609
c119f12de848
Use libtool to build static archives when --with-static-prpls is passed
Mark Doliner <markdoliner@pidgin.im>
parents:
16810
diff
changeset
|
43 | pkg_LTLIBRARIES = libnovell.la |
| 8675 | 44 | libnovell_la_SOURCES = $(NOVELLSOURCES) |
|
14736
90fe3dd8e9db
[gaim-migrate @ 17420]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
14254
diff
changeset
|
45 | libnovell_la_LIBADD = $(GLIB_LIBS) |
| 8675 | 46 | |
| 47 | endif | |
| 48 | ||
| 49 | AM_CPPFLAGS = \ | |
|
15435
4b933b06d75e
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@pidgin.im>
parents:
14736
diff
changeset
|
50 | -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
|
51 | -I$(top_builddir)/libpurple \ |
| 8675 | 52 | $(DEBUG_CFLAGS) \ |
|
26489
7d8de8906c79
Clean unnecessary changes out of the Makefiles.
Michael Ruprecht <maiku@pidgin.im>
parents:
26167
diff
changeset
|
53 | $(GLIB_CFLAGS) |