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.19 by root, Tue Nov 29 12:36:18 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 these
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";
78sub MY::postamble { 76sub MY::postamble {
79 <<EOF; 77 <<EOF;
80 78
81# set \$VERSION in all modules 79# set \$VERSION in all modules
82setver: 80setver:
83 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm 81 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
84 82
85EOF 83EOF
86} 84}
87 85
88 86

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines