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

Comparing Coro/Makefile.PL (file contents):
Revision 1.7 by root, Thu Aug 16 21:55:34 2001 UTC vs.
Revision 1.16 by pcg, Thu May 13 16:12:14 2004 UTC

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.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 contact the author, maybe it can be made to 11*** should either upgrade or fix it ;)
12*** work...
13*** 12***
14*** Marc Lehmann <pcg\@goof.com> 13*** Marc Lehmann <pcg\@goof.com>
15*** 14***
16 15
17EOF 16EOF
18} 17}
19 18
20$EVENT = eval { require Event }; 19if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) {
21 print "*** Please read the INSTALL file, you need a patched Event.\n";
22 } elsif ($Event::VERSION == 0.88) {
23 print <<EOF
24
25***
26*** WARNING: Event version $Event::VERSION found, NOT building Event support.
27***
28*** 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
30*** newer version that hopefully has the bug fixed.
31***
32
33EOF
34 } else {
35 $EVENT = 1;
36 $DEFINE .= " -DHAVE_EVENT=1";
37 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
38 }
39 print "\n";
40} else {
41 print "\n*** Event not found, not build Event support.\n\n";
42}
21 43
22WriteMakefile( 44WriteMakefile(
23 dist => { 45 dist => {
24 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 46 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
25 COMPRESS => 'gzip -9v', 47 COMPRESS => 'gzip -9v',
27 }, 49 },
28 NAME => "Coro", 50 NAME => "Coro",
29 VERSION_FROM => "Coro.pm", 51 VERSION_FROM => "Coro.pm",
30 DIR => ['Coro', ($EVENT ? 'Event' : ())], 52 DIR => ['Coro', ($EVENT ? 'Event' : ())],
31 PREREQ_PM => { 53 PREREQ_PM => {
32 Event => 0.83, # still, 0.83 and below have serious bugs(!) 54 Event => 0.86,
55 Scalar::Util => 0.00,
33 }, 56 },
34 PM => { 57 PM => {
35 'Coro.pm' => '$(INST_LIBDIR)/Coro/Coro.pm', 58 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
59
36 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 60 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
37 61
38 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', 62 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
39 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h', 63 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
40 64
41 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', 65 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
42 66
43 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', 67 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
44 68
69 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
45 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 70 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
46 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 71 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
47 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 72 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
73 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
48 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 74 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
49
50 $EVENT ? (
51 'Event/Event.pm' => '$(INST_LIBDIR)/Coro/Event.pm',
52 'Event/Handle.pm'=> '$(INST_LIBDIR)/Coro/Handle.pm',
53 'Event/Socket.pm'=> '$(INST_LIBDIR)/Coro/Socket.pm',
54 'Event/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
55 ) : (),
56 }, 75 },
57); 76);
58 77
59sub MY::postamble { 78sub MY::postamble {
60 <<EOF; 79 <<EOF;
61 80
62# set \$VERSION in all modules 81# set \$VERSION in all modules
63setver: 82setver:
64 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm 83 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
65 84
66EOF 85EOF
67} 86}
68 87
69 88

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines