ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/Makefile.PL
(Generate patch)

Comparing AnyEvent/Makefile.PL (file contents):
Revision 1.28 by root, Fri Mar 12 23:30:06 2010 UTC vs.
Revision 1.29 by root, Sat Mar 13 00:08:08 2010 UTC

19*** and performant, even without any of the optional modules. 19*** and performant, even without any of the optional modules.
20*** 20***
21 21
22EOF 22EOF
23 23
24do "constants.pl.PL"
25 or die "cannot execute constants.pl.PL";
26
24WriteMakefile( 27WriteMakefile(
25 dist => { 28 dist => {
26 PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 29 PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
27 COMPRESS => 'gzip -9v', 30 COMPRESS => 'gzip -9v',
28 SUFFIX => '.gz', 31 SUFFIX => '.gz',
29 }, 32 },
30 test => { TESTS => "t/*.t t/handle/*.t" }, 33 test => { TESTS => "t/*.t t/handle/*.t" },
31 NAME => "AnyEvent", 34 NAME => "AnyEvent",
32 VERSION_FROM => "lib/AnyEvent.pm", 35 VERSION_FROM => "lib/AnyEvent.pm",
33 PL_FILES => { "constants.pl.PL" => "constants.pl" },
34 clean => { FILES => "constants.pl" },
35 PMLIBDIRS => ["lib"], 36 PMLIBDIRS => ["lib"],
36 META_MERGE => { 37 META_MERGE => {
37 recommends => { 38 recommends => {
38 "Net::SSLeay" => 1.33, 39 "Net::SSLeay" => 1.33,
39 "JSON" => 2.09, 40 "JSON" => 2.09,
43 "Async::Interrupt" => 1.0, 44 "Async::Interrupt" => 1.0,
44 } 45 }
45 }, 46 },
46); 47);
47 48
48package MY;
49
50sub init_PM {
51 my ($self) = @_;
52
53 $self->SUPER::init_PM;
54 $self->{PM}{"constants.pl"} = '$(INST_LIB)/AnyEvent/constants.pl';
55}
56
57

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines