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.22 by root, Sat Nov 4 01:31:57 2006 UTC

3if ($] < 5.006) { 3if ($] < 5.006) {
4 print <<EOF; 4 print <<EOF;
5 5
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.[6-9]
9*** 5.7 and 5.6, it has not been tested with older versions. If it 9*** it has not been tested with older versions. If it compiles and passes the
10*** compiles and passes the testsuite, it should work. Otherwise you 10*** testsuite, it should work. Otherwise you should either upgrade or fix it ;)
11*** should either upgrade or fix it ;)
12*** 11***
13*** Marc Lehmann <pcg\@goof.com> 12*** Marc Lehmann <schmorp\@schmorp.de>
14*** 13***
15 14
16EOF 15EOF
17} 16}
18 17
19if (eval { require Event }) { 18if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) { 19 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
21 print "*** Please read the INSTALL file, you need a patched Event.\n"; 20 print <<EOF
21
22***
23*** WARNING: Event version $Event::VERSION found, NOT building Event support.
24***
25*** This version of Event is broken. The only currently known non-broken
26*** versions of Event are 0.87 and 0.89+. Please install one of those
27*** versions.
28***
29
30EOF
22 } else { 31 } else {
23 $EVENT = 1; 32 $EVENT = 1;
24 $DEFINE .= " -DHAVE_EVENT=1"; 33 $DEFINE .= " -DHAVE_EVENT=1";
25 print "\nEvent version $Event::VERSION found, building Event support.\n\n"; 34 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
26 } 35 }
27 print "\n"; 36 print "\n";
28} else { 37} else {
29 print "\n*** Event not found, not build Event support.\n\n"; 38 print "\n*** Event not found, not build Event support.\n\n";
30} 39}
31
32 40
33WriteMakefile( 41WriteMakefile(
34 dist => { 42 dist => {
35 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 43 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
36 COMPRESS => 'gzip -9v', 44 COMPRESS => 'gzip -9v',
38 }, 46 },
39 NAME => "Coro", 47 NAME => "Coro",
40 VERSION_FROM => "Coro.pm", 48 VERSION_FROM => "Coro.pm",
41 DIR => ['Coro', ($EVENT ? 'Event' : ())], 49 DIR => ['Coro', ($EVENT ? 'Event' : ())],
42 PREREQ_PM => { 50 PREREQ_PM => {
51 Scalar::Util => 0.00,
52
53 # for Coro::Event
43 Event => 0.86, 54 Event => 0.86,
44 Scalar::Util => 0.00, 55
56 # for Coro::AIO, Coro::Util
57 IO::AIO => 1.6,
58 AnyEvent => 0,
45 }, 59 },
46 PM => { 60 PM => {
47 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 61 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
48 62
49 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 63 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
59 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 73 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
60 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 74 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
61 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 75 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
62 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 76 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
63 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 77 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
64 $EVENT ? ( 78
65 'Event/Event.pm' => '$(INST_LIBDIR)/Coro/Event.pm', 79 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.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', 80 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
69 'Event/Select.pm'=> '$(INST_LIBDIR)/Coro/Select.pm',
70 ) : (),
71 }, 81 },
72); 82);
73 83
74sub MY::postamble { 84sub MY::postamble {
75 <<EOF; 85 <<EOF;
76 86
77# set \$VERSION in all modules 87# set \$VERSION in all modules
78setver: 88setver:
79 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm 89 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
80 90
81EOF 91EOF
82} 92}
83 93
84 94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines