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.40 by root, Wed Aug 21 08:40:28 2013 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"],
37# PREREQ_PM => {
38# Task::Weaken => 0,
39# },
36 META_MERGE => { 40 META_MERGE => {
37 recommends => { 41 recommends => {
42 "Task::Weaken" => 0,
38 "Net::SSLeay" => 1.33, 43 "Net::SSLeay" => 1.33,
39 "JSON" => 2.09, 44 "JSON" => 2.09,
40 "JSON::XS" => 2.2, 45 "JSON::XS" => 2.2,
41 "EV" => 3.05, 46 "EV" => 4.00,
42 "Guard" => 1.02, 47 "Guard" => 1.02,
43 "Async::Interrupt" => 1.0, 48 "Async::Interrupt" => 1.0,
44 } 49 }
45 }, 50 },
51 PM => {
52 'lib/AE.pm' => '$(INST_LIB)/AE.pm',
53 'lib/AnyEvent.pm' => '$(INST_LIB)/AnyEvent.pm',
54 'lib/AnyEvent/DNS.pm' => '$(INST_LIB)/AnyEvent/DNS.pm',
55 'lib/AnyEvent/Debug.pm' => '$(INST_LIB)/AnyEvent/Debug.pm',
56 'lib/AnyEvent/FAQ.pod' => '$(INST_LIB)/AnyEvent/FAQ.pod',
57 'lib/AnyEvent/Handle.pm' => '$(INST_LIB)/AnyEvent/Handle.pm',
58 'lib/AnyEvent/Impl/Cocoa.pm' => '$(INST_LIB)/AnyEvent/Impl/Cocoa.pm',
59 'lib/AnyEvent/Impl/EV.pm' => '$(INST_LIB)/AnyEvent/Impl/EV.pm',
60 'lib/AnyEvent/Impl/Event.pm' => '$(INST_LIB)/AnyEvent/Impl/Event.pm',
61 'lib/AnyEvent/Impl/EventLib.pm' => '$(INST_LIB)/AnyEvent/Impl/EventLib.pm',
62 'lib/AnyEvent/Impl/FLTK.pm' => '$(INST_LIB)/AnyEvent/Impl/FLTK.pm',
63 'lib/AnyEvent/Impl/Glib.pm' => '$(INST_LIB)/AnyEvent/Impl/Glib.pm',
64 'lib/AnyEvent/Impl/IOAsync.pm' => '$(INST_LIB)/AnyEvent/Impl/IOAsync.pm',
65 'lib/AnyEvent/Impl/Irssi.pm' => '$(INST_LIB)/AnyEvent/Impl/Irssi.pm',
66 'lib/AnyEvent/Impl/POE.pm' => '$(INST_LIB)/AnyEvent/Impl/POE.pm',
67 'lib/AnyEvent/Impl/Perl.pm' => '$(INST_LIB)/AnyEvent/Impl/Perl.pm',
68 'lib/AnyEvent/Impl/Qt.pm' => '$(INST_LIB)/AnyEvent/Impl/Qt.pm',
69 'lib/AnyEvent/Impl/Tk.pm' => '$(INST_LIB)/AnyEvent/Impl/Tk.pm',
70 'lib/AnyEvent/IO.pm' => '$(INST_LIB)/AnyEvent/IO.pm',
71 'lib/AnyEvent/IO/IOAIO.pm' => '$(INST_LIB)/AnyEvent/IO/IOAIO.pm',
72 'lib/AnyEvent/IO/Perl.pm' => '$(INST_LIB)/AnyEvent/IO/Perl.pm',
73 'lib/AnyEvent/Intro.pod' => '$(INST_LIB)/AnyEvent/Intro.pod',
74 'lib/AnyEvent/Log.pm' => '$(INST_LIB)/AnyEvent/Log.pm',
75 'lib/AnyEvent/Loop.pm' => '$(INST_LIB)/AnyEvent/Loop.pm',
76 'lib/AnyEvent/Socket.pm' => '$(INST_LIB)/AnyEvent/Socket.pm',
77 'lib/AnyEvent/Strict.pm' => '$(INST_LIB)/AnyEvent/Strict.pm',
78 'lib/AnyEvent/TLS.pm' => '$(INST_LIB)/AnyEvent/TLS.pm',
79 'lib/AnyEvent/Util.pm' => '$(INST_LIB)/AnyEvent/Util.pm',
80 'lib/AnyEvent/Util/idna.pl' => '$(INST_LIB)/AnyEvent/Util/idna.pl',
81 'lib/AnyEvent/Util/uts46data.pl' => '$(INST_LIB)/AnyEvent/Util/uts46data.pl',
82 'lib/AnyEvent/constants.pl' => '$(INST_ARCHLIB)/AnyEvent/constants.pl',
83 },
46); 84);
47 85
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