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

Comparing Coro/Makefile.PL (file contents):
Revision 1.10 by root, Sun Nov 25 20:04:04 2001 UTC vs.
Revision 1.32 by root, Wed Oct 3 01:48:06 2007 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 contact the author, maybe it can be made to
12*** work...
13*** 11***
14*** Marc Lehmann <pcg\@goof.com> 12*** Marc Lehmann <schmorp\@schmorp.de>
15*** 13***
16 14
17EOF 15EOF
18} 16}
19 17
20$EVENT = eval { require Event }; 18if (eval { require Event }) {
19 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
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
31 } else {
32 $EVENT = 1;
33 $DEFINE .= " -DHAVE_EVENT=1";
34 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
35 }
36 print "\n";
37} else {
38 print "\n*** Event not found, not build Event support.\n\n";
39}
21 40
22WriteMakefile( 41WriteMakefile(
23 dist => { 42 dist => {
24 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 . ;',
25 COMPRESS => 'gzip -9v', 44 COMPRESS => 'gzip -9v',
27 }, 46 },
28 NAME => "Coro", 47 NAME => "Coro",
29 VERSION_FROM => "Coro.pm", 48 VERSION_FROM => "Coro.pm",
30 DIR => ['Coro', ($EVENT ? 'Event' : ())], 49 DIR => ['Coro', ($EVENT ? 'Event' : ())],
31 PREREQ_PM => { 50 PREREQ_PM => {
32 Event => 0.83, # still, 0.83 and below have serious bugs(!)
33 Scalar::Util => 0.00, 51 Scalar::Util => 0.00,
52 AnyEvent => 2.51,
53 Storable => 2.15,
54
55 # for Coro::Event
56 Event => 1.06,
57 Time::HiRes => 0,
58
59 # for Coro::AIO
60 IO::AIO => 2.3,
34 }, 61 },
35 PM => { 62 PM => {
36 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 63 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
64
65 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
66
67 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
68 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
69
70# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
71
72 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
73
74 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
75 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
76 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
77 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
78 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
79 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
80
81 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm',
82 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
83 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm',
84 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm',
85 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm',
86
87 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
88 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm',
89 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm',
37 }, 90 },
38); 91);
39 92
40sub MY::postamble { 93sub MY::postamble {
41 <<EOF; 94 <<EOF;
42 95
43# set \$VERSION in all modules 96# set \$VERSION in all modules
44setver: 97setver:
45 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm 98 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
46 99
47EOF 100EOF
48} 101}
49 102
50 103

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines