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

Comparing Coro/Makefile.PL (file contents):
Revision 1.14 by root, Sat Mar 22 18:50:31 2003 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"; 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 these
28*** versions.
29***
30
31EOF
22 } else { 32 } else {
23 $EVENT = 1; 33 $EVENT = 1;
24 $DEFINE .= " -DHAVE_EVENT=1"; 34 $DEFINE .= " -DHAVE_EVENT=1";
25 print "\nEvent version $Event::VERSION found, building Event support.\n\n"; 35 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
26 } 36 }
27 print "\n"; 37 print "\n";
28} else { 38} else {
29 print "\n*** Event not found, not build Event support.\n\n"; 39 print "\n*** Event not found, not build Event support.\n\n";
30} 40}
31
32 41
33WriteMakefile( 42WriteMakefile(
34 dist => { 43 dist => {
35 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 . ;',
36 COMPRESS => 'gzip -9v', 45 COMPRESS => 'gzip -9v',
59 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 68 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
60 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 69 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
61 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 70 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
62 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 71 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
63 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 72 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
64 $EVENT ? (
65 'Event/Event.pm' => '$(INST_LIBDIR)/Coro/Event.pm',
66 'Event/Handle.pm'=> '$(INST_LIBDIR)/Coro/Handle.pm',
67 'Event/Socket.pm'=> '$(INST_LIBDIR)/Coro/Socket.pm',
68 'Event/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
69 'Event/Select.pm'=> '$(INST_LIBDIR)/Coro/Select.pm',
70 ) : (),
71 }, 73 },
72); 74);
73 75
74sub MY::postamble { 76sub MY::postamble {
75 <<EOF; 77 <<EOF;
76 78
77# set \$VERSION in all modules 79# set \$VERSION in all modules
78setver: 80setver:
79 \$(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
80 82
81EOF 83EOF
82} 84}
83 85
84 86

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines