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

Comparing Coro/Makefile.PL (file contents):
Revision 1.6 by root, Wed Jul 25 04:14:37 2001 UTC vs.
Revision 1.14 by root, Sat Mar 22 18:50:31 2003 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}
18
19if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) {
21 print "*** Please read the INSTALL file, you need a patched Event.\n";
22 } else {
23 $EVENT = 1;
24 $DEFINE .= " -DHAVE_EVENT=1";
25 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
26 }
27 print "\n";
28} else {
29 print "\n*** Event not found, not build Event support.\n\n";
30}
31
19 32
20WriteMakefile( 33WriteMakefile(
21 dist => { 34 dist => {
22 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 35 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
23 COMPRESS => 'gzip -9v', 36 COMPRESS => 'gzip -9v',
24 SUFFIX => '.gz', 37 SUFFIX => '.gz',
25 }, 38 },
26 NAME => "Coro", 39 NAME => "Coro",
27 VERSION_FROM => "Coro.pm", 40 VERSION_FROM => "Coro.pm",
28 DIR => ['Coro'], 41 DIR => ['Coro', ($EVENT ? 'Event' : ())],
29 PREREQ_PM => { 42 PREREQ_PM => {
30 Event => 0.84, # yes, 0.83 and below have serious bugs 43 Event => 0.86,
44 Scalar::Util => 0.00,
31 }, 45 },
46 PM => {
47 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
48
49 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
50
51 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
52 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
53
54 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
55
56 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
57
58 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
59 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
60 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
61 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
62 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
63 '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 },
32); 72);
33 73
34sub MY::postamble { 74sub MY::postamble {
35 <<EOF; 75 <<EOF;
36 76
37# set \$VERSION in all modules 77# set \$VERSION in all modules
38setver: 78setver:
39 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm 79 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
40 80
41EOF 81EOF
42} 82}
43 83
44 84

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines