Mercurial > pidgin
annotate libpurple/plugins/perl/common/Makefile.PL.in @ 30912:63aeff4ebc19
jabber: Avoid a double-free in the google relay code.
Also some whitespace clean-up right next to the double-free. Reported by
"mordy" in #pidgin.
| author | Paul Aurich <paul@darkrain42.org> |
|---|---|
| date | Mon, 08 Nov 2010 17:05:18 +0000 |
| parents | 77177e6000e4 |
| children | 4f89666c8d81 |
| rev | line source |
|---|---|
|
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1 use 5.006; |
|
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
2 use ExtUtils::MakeMaker; |
|
16365
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence the contents |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
4 # of the Makefile that is written. |
|
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
5 WriteMakefile( |
|
16365
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
6 'NAME' => 'Purple', |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
7 'VERSION_FROM' => '@srcdir@/Purple.pm', # finds $VERSION |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
8 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
9 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
10 (ABSTRACT_FROM => '@srcdir@/Purple.pm', # finds $ABSTRACT |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
11 AUTHOR => 'Purple <http://pidgin.im/>') : ()), |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
12 'DEFINE' => '@DEBUG_CFLAGS@', |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
13 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple @GLIB_CFLAGS@', |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
14 'OBJECT' => '$(O_FILES)', # link all the C files too |
|
ca09f5b57672
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <pidgin@unreliablesource.net>
parents:
15850
diff
changeset
|
15 # 'OPTIMIZE' => '-g', # For debugging |
|
27093
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
16 'INSTALLDIRS' => 'vendor', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
17 'INSTALL_BASE' => '$(prefix)', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
18 'INSTALLVENDORARCH' => '$(libdir)/purple-$(PURPLE_MAJOR_VERSION)/perl', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
19 'INSTALLVENDORMAN3DIR' => '$(mandir)/man3', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
20 'macro' => { |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
21 'prefix' => '@prefix@', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
22 'exec_prefix' => '@exec_prefix@', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
23 'libdir' => '@libdir@', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
24 'mandir' => '@mandir@', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
25 'datarootdir' => '@datarootdir@', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
26 'PURPLE_MAJOR_VERSION' => '@PURPLE_MAJOR_VERSION@', |
|
77177e6000e4
Install the Purple and Pidgin perl modules under $libdir instead of in perl's
Etan Reisner <pidgin@unreliablesource.net>
parents:
16739
diff
changeset
|
27 }, |
|
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
28 ); |
