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

Comparing Coro/Makefile.PL (file contents):
Revision 1.13 by root, Thu Nov 21 13:08:05 2002 UTC vs.
Revision 1.16 by pcg, Thu May 13 16:12:14 2004 UTC

14*** 14***
15 15
16EOF 16EOF
17} 17}
18 18
19$EVENT = eval { require Event }; 19if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) {
21 print "*** Please read the INSTALL file, you need a patched Event.\n";
22 } elsif ($Event::VERSION == 0.88) {
23 print <<EOF
24
25***
26*** WARNING: Event version $Event::VERSION found, NOT building Event support.
27***
28*** This version of Event is broken. The only currently known non-broken
29*** version of Event is 0.87. Please install this version, or try with a
30*** newer version that hopefully has the bug fixed.
31***
32
33EOF
34 } else {
35 $EVENT = 1;
36 $DEFINE .= " -DHAVE_EVENT=1";
37 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
38 }
39 print "\n";
40} else {
41 print "\n*** Event not found, not build Event support.\n\n";
42}
20 43
21WriteMakefile( 44WriteMakefile(
22 dist => { 45 dist => {
23 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 46 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
24 COMPRESS => 'gzip -9v', 47 COMPRESS => 'gzip -9v',
26 }, 49 },
27 NAME => "Coro", 50 NAME => "Coro",
28 VERSION_FROM => "Coro.pm", 51 VERSION_FROM => "Coro.pm",
29 DIR => ['Coro', ($EVENT ? 'Event' : ())], 52 DIR => ['Coro', ($EVENT ? 'Event' : ())],
30 PREREQ_PM => { 53 PREREQ_PM => {
31 Event => 0.85, 54 Event => 0.86,
32 Scalar::Util => 0.00, 55 Scalar::Util => 0.00,
33 }, 56 },
34 PM => { 57 PM => {
35 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 58 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
59
60 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
61
62 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
63 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
64
65 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
66
67 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
68
69 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
70 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
71 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
72 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
73 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
74 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
36 }, 75 },
37); 76);
38 77
39sub MY::postamble { 78sub MY::postamble {
40 <<EOF; 79 <<EOF;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines