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

Comparing AnyEvent/Makefile.PL (file contents):
Revision 1.2 by root, Wed Apr 27 01:27:21 2005 UTC vs.
Revision 1.3 by root, Thu Dec 1 18:56:18 2005 UTC

1use ExtUtils::MakeMaker; 1use ExtUtils::MakeMaker;
2 2
3use 5.006; 3use 5.008;
4
5print <<EOF;
6
7***
8*** You *need* one or more of the following modules to make use of this module:
9*** Coro, Event, Glib, Tk
10***
11*** The Makefile.PL depends on Event, but you can ignore this dependency if
12*** any of the other modules are installed.
13***
14
15EOF
4 16
5WriteMakefile( 17WriteMakefile(
6 dist => { 18 dist => {
7 PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 19 PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v', 20 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz', 21 SUFFIX => '.gz',
10 }, 22 },
11 NAME => "AnyEvent", 23 NAME => "AnyEvent",
12 VERSION_FROM => "lib/AnyEvent.pm", 24 VERSION_FROM => "lib/AnyEvent.pm",
25 PREREQ_PM => {
26 Event => 0.86,
27 },
13); 28);
14 29

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines