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.20 by root, Mon Dec 12 20:43:45 2005 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 <schmorp\@schmorp.de>
14***
15
16EOF
17}
18
19if (eval { require Event }) {
20 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
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 those
28*** versions.
29***
30
31EOF
32 } else {
33 $EVENT = 1;
34 $DEFINE .= " -DHAVE_EVENT=1";
35 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
36 }
37 print "\n";
38} else {
39 print "\n*** Event not found, not build Event support.\n\n";
40}
4 41
5WriteMakefile( 42WriteMakefile(
6 dist => { 43 dist => {
7 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 . ;',
8 COMPRESS => 'gzip -9v', 45 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz', 46 SUFFIX => '.gz',
10 }, 47 },
11 NAME => "Coro", 48 NAME => "Coro",
12 VERSION_FROM => "Coro.pm", 49 VERSION_FROM => "Coro.pm",
13 DIR => ['Coro'], 50 DIR => ['Coro', ($EVENT ? 'Event' : ())],
51 PREREQ_PM => {
52 Event => 0.86,
53 Scalar::Util => 0.00,
54 },
55 PM => {
56 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
57
58 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
59
60 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
61 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
62
63 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
64
65 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
66
67 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
68 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
69 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
70 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
71 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
72 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
73 },
14); 74);
15 75
16sub MY::postamble { 76sub MY::postamble {
17 <<EOF; 77 <<EOF;
18 78
19# set \$VERSION in all modules 79# set \$VERSION in all modules
20setver: 80setver:
21 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm 81 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
22 82
23EOF 83EOF
24} 84}
25 85
26 86

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines