ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/Makefile.PL
Revision: 1.3
Committed: Fri Oct 26 17:40:31 2007 UTC (16 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.2: +12 -0 lines
Log Message:
*** empty log message ***

File Contents

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