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

Comparing Coro/Makefile.PL (file contents):
Revision 1.11 by root, Mon Dec 31 20:46:53 2001 UTC vs.
Revision 1.21 by root, Mon Dec 26 18:48:11 2005 UTC

8*** internals to do it's job. While it seems to work fine with perl-5.8, 8*** internals to do it's job. While it seems to work fine with perl-5.8,
9*** 5.7 and 5.6, it has not been tested with older versions. If it 9*** 5.7 and 5.6, it has not been tested with older versions. If it
10*** compiles and passes the testsuite, it should work. Otherwise you 10*** compiles and passes the testsuite, it should work. Otherwise you
11*** should either upgrade or fix it ;) 11*** should either upgrade or fix it ;)
12*** 12***
13*** Marc Lehmann <pcg\@goof.com> 13*** Marc Lehmann <schmorp\@schmorp.de>
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 or $Event::VERSION == 0.88) {
21 print <<EOF
22
23***
24*** WARNING: Event version $Event::VERSION found, NOT building Event support.
25***
26*** This version of Event is broken. The only currently known non-broken
27*** versions of Event are 0.87 and 0.89+. Please install one of those
28*** versions.
29***
30
31EOF
32 } else {
33 $EVENT = 1;
34 $DEFINE .= " -DHAVE_EVENT=1";
35 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
36 }
37 print "\n";
38} else {
39 print "\n*** Event not found, not build Event support.\n\n";
40}
20 41
21WriteMakefile( 42WriteMakefile(
22 dist => { 43 dist => {
23 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 44 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
24 COMPRESS => 'gzip -9v', 45 COMPRESS => 'gzip -9v',
26 }, 47 },
27 NAME => "Coro", 48 NAME => "Coro",
28 VERSION_FROM => "Coro.pm", 49 VERSION_FROM => "Coro.pm",
29 DIR => ['Coro', ($EVENT ? 'Event' : ())], 50 DIR => ['Coro', ($EVENT ? 'Event' : ())],
30 PREREQ_PM => { 51 PREREQ_PM => {
31 Event => 0.83, # still, 0.83 and below have serious bugs(!)
32 Scalar::Util => 0.00, 52 Scalar::Util => 0.00,
53
54 # for Coro::Event
55 Event => 0.86,
56
57 # for Coro::AIO
58 IO::AIO => 1.6,
59 AnyEvent => 0,
33 }, 60 },
34 PM => { 61 PM => {
35 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 62 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
63
64 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
65
66 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
67 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
68
69 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
70
71 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
72
73 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
74 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
75 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
76 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
77 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
78 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
79
80 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
36 }, 81 },
37); 82);
38 83
39sub MY::postamble { 84sub MY::postamble {
40 <<EOF; 85 <<EOF;
41 86
42# set \$VERSION in all modules 87# set \$VERSION in all modules
43setver: 88setver:
44 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm 89 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
45 90
46EOF 91EOF
47} 92}
48 93
49 94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines