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

Comparing Coro/Makefile.PL (file contents):
Revision 1.16 by pcg, Thu May 13 16:12:14 2004 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
19if (eval { require Event }) { 19if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) { 20 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
21 print "*** Please read the INSTALL file, you need a patched Event.\n";
22 } elsif ($Event::VERSION == 0.88) {
23 print <<EOF 21 print <<EOF
24 22
25*** 23***
26*** WARNING: Event version $Event::VERSION found, NOT building Event support. 24*** WARNING: Event version $Event::VERSION found, NOT building Event support.
27*** 25***
28*** This version of Event is broken. The only currently known non-broken 26*** 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 27*** versions of Event are 0.87 and 0.89+. Please install one of those
30*** newer version that hopefully has the bug fixed. 28*** versions.
31*** 29***
32 30
33EOF 31EOF
34 } else { 32 } else {
35 $EVENT = 1; 33 $EVENT = 1;
36 $DEFINE .= " -DHAVE_EVENT=1"; 34 $DEFINE .= " -DHAVE_EVENT=1";
49 }, 47 },
50 NAME => "Coro", 48 NAME => "Coro",
51 VERSION_FROM => "Coro.pm", 49 VERSION_FROM => "Coro.pm",
52 DIR => ['Coro', ($EVENT ? 'Event' : ())], 50 DIR => ['Coro', ($EVENT ? 'Event' : ())],
53 PREREQ_PM => { 51 PREREQ_PM => {
52 Scalar::Util => 0.00,
53
54 # for Coro::Event
54 Event => 0.86, 55 Event => 0.86,
55 Scalar::Util => 0.00, 56
57 # for Coro::AIO
58 IO::AIO => 1.6,
59 AnyEvent => 0,
56 }, 60 },
57 PM => { 61 PM => {
58 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 62 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
59 63
60 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 64 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
70 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 74 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
71 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 75 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
72 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 76 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
73 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 77 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
74 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 78 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
79
80 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
75 }, 81 },
76); 82);
77 83
78sub MY::postamble { 84sub MY::postamble {
79 <<EOF; 85 <<EOF;
80 86
81# set \$VERSION in all modules 87# set \$VERSION in all modules
82setver: 88setver:
83 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm 89 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
84 90
85EOF 91EOF
86} 92}
87 93
88 94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines