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.
|
6678
c633179afd00
[gaim-migrate @ 7203]
Christian Hammond <chipx86@chipx86.com>
parents:
6665
diff
changeset
|
1 | use 5.006; |
| 6508 | 2 | use ExtUtils::MakeMaker; |
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
3 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence the contents |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
4 | # of the Makefile that is written. |
| 6508 | 5 | WriteMakefile( |
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
6 | 'NAME' => 'Purple', |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
7 | 'VERSION_FROM' => '@srcdir@/Purple.pm', # finds $VERSION |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
8 | 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
9 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
10 | (ABSTRACT_FROM => '@srcdir@/Purple.pm', # finds $ABSTRACT |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
11 | AUTHOR => 'Purple <http://pidgin.im/>') : ()), |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
12 | 'DEFINE' => '@DEBUG_CFLAGS@', |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
13 | 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple @GLIB_CFLAGS@', |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
14 | 'OBJECT' => '$(O_FILES)', # link all the C files too |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15913
diff
changeset
|
15 | # 'OPTIMIZE' => '-g', # For debugging |
| 6508 | 16 | ); |