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

Comparing EV/Makefile.PL (file contents):
Revision 1.2 by root, Fri Oct 26 16:50:05 2007 UTC vs.
Revision 1.5 by root, Mon Oct 29 08:48:07 2007 UTC

1use 5.006;
2
1use ExtUtils::MakeMaker; 3use ExtUtils::MakeMaker;
4
5print <<EOF;
6
7***
8*** You need to install libevent (http://monkey.org/~provos/libevent/) separately
9*** first in a way so that the Makefile.PL can find both -levent and the event.h
10*** and evdns.h include files.
11***
12*** Version 1.3e or higher is recommended, but older 1.3 versions likely work too.
13***
14
15EOF
2 16
3WriteMakefile( 17WriteMakefile(
4 dist => { 18 dist => {
5 PREOP => 'pod2text EV.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 19 PREOP => 'pod2text EV.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6 COMPRESS => 'gzip -9v', 20 COMPRESS => 'gzip -9v',
7 SUFFIX => '.gz', 21 SUFFIX => '.gz',
8 }, 22 },
9 LIBS => ["-levent"], 23 LIBS => ["-levent"],
10 NAME => "EV", 24 NAME => "EV",
11 VERSION_FROM => "EV.pm", 25 VERSION_FROM => "EV.pm",
26 PM => {
27 'EV.pm' => '$(INST_LIBDIR)/EV.pm',
28 'EV/AnyEvent.pm' => '$(INST_LIBDIR)/EV/AnyEvent.pm',
29 'EV/DNS.pm' => '$(INST_LIBDIR)/EV/DNS.pm',
30 'EV/EVAPI.h' => '$(INST_LIBDIR)/EV/EVAPI.h',
31 'EV/MakeMaker.pm' => '$(INST_LIBDIR)/EV/MakeMaker.pm',
32 },
12); 33);
13 34

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines