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

Comparing Coro/Makefile.PL (file contents):
Revision 1.3 by root, Thu Jul 19 02:45:09 2001 UTC vs.
Revision 1.15 by root, Sat Mar 22 23:08:36 2003 UTC

1use ExtUtils::MakeMaker; 1use ExtUtils::MakeMaker;
2 2
3use 5.006; 3if ($] < 5.006) {
4 print <<EOF;
5
6***
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,
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
11*** should either upgrade or fix it ;)
12***
13*** Marc Lehmann <pcg\@goof.com>
14***
15
16EOF
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}
4 31
5WriteMakefile( 32WriteMakefile(
6 dist => { 33 dist => {
7 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 34 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v', 35 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz', 36 SUFFIX => '.gz',
10 }, 37 },
11 NAME => "Coro", 38 NAME => "Coro",
12 VERSION_FROM => "Coro.pm", 39 VERSION_FROM => "Coro.pm",
13 DIR => ['Coro'], 40 DIR => ['Coro', ($EVENT ? 'Event' : ())],
41 PREREQ_PM => {
42 Event => 0.86,
43 Scalar::Util => 0.00,
44 },
45 PM => {
46 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
47
48 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
49
50 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
51 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
52
53 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
54
55 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
56
57 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
58 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
59 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
60 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
61 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
62 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
63 },
14); 64);
15 65
16sub MY::postamble { 66sub MY::postamble {
17 <<EOF; 67 <<EOF;
18 68
19# set \$VERSION in all modules 69# set \$VERSION in all modules
20setver: 70setver:
21 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm 71 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
22 72
23EOF 73EOF
24} 74}
25 75
26 76

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines