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.23 by root, Sun Nov 5 02:18:05 2006 UTC

3if ($] < 5.006) { 3if ($] < 5.006) {
4 print <<EOF; 4 print <<EOF;
5 5
6*** 6***
7*** WARNING: This module is quite low-level and uses undocumented perl 7*** WARNING: This module is quite low-level and uses undocumented perl
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.[6-9]
9*** 5.7 and 5.6, it has not been tested with older versions. If it 9*** it has not been tested with older versions. If it compiles and passes the
10*** compiles and passes the testsuite, it should work. Otherwise you 10*** testsuite, it should work. Otherwise you should either upgrade or fix it ;)
11*** should either upgrade or fix it ;)
12*** 11***
13*** Marc Lehmann <pcg\@goof.com> 12*** Marc Lehmann <schmorp\@schmorp.de>
14*** 13***
15 14
16EOF 15EOF
17} 16}
18 17
19if (eval { require Event }) { 18if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) { 19 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 20 print <<EOF
24 21
25*** 22***
26*** WARNING: Event version $Event::VERSION found, NOT building Event support. 23*** WARNING: Event version $Event::VERSION found, NOT building Event support.
27*** 24***
28*** This version of Event is broken. The only currently known non-broken 25*** 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 26*** versions of Event are 0.87 and 0.89+. Please install one of those
30*** newer version that hopefully has the bug fixed. 27*** versions.
31*** 28***
32 29
33EOF 30EOF
34 } else { 31 } else {
35 $EVENT = 1; 32 $EVENT = 1;
36 $DEFINE .= " -DHAVE_EVENT=1"; 33 $DEFINE .= " -DHAVE_EVENT=1";
49 }, 46 },
50 NAME => "Coro", 47 NAME => "Coro",
51 VERSION_FROM => "Coro.pm", 48 VERSION_FROM => "Coro.pm",
52 DIR => ['Coro', ($EVENT ? 'Event' : ())], 49 DIR => ['Coro', ($EVENT ? 'Event' : ())],
53 PREREQ_PM => { 50 PREREQ_PM => {
51 Scalar::Util => 0.00,
52
53 # for Coro::Event
54 Event => 0.86, 54 Event => 0.86,
55 Scalar::Util => 0.00, 55
56 # for Coro::AIO, Coro::Util
57 IO::AIO => 1.6,
58 AnyEvent => 0,
56 }, 59 },
57 PM => { 60 PM => {
58 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 61 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
59 62
60 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 63 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
70 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 73 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
71 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 74 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
72 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 75 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
73 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 76 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
74 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 77 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
78
79 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
80 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm',
81 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
75 }, 82 },
76); 83);
77 84
78sub MY::postamble { 85sub MY::postamble {
79 <<EOF; 86 <<EOF;
80 87
81# set \$VERSION in all modules 88# set \$VERSION in all modules
82setver: 89setver:
83 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm 90 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
84 91
85EOF 92EOF
86} 93}
87 94
88 95

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines