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

Comparing Coro/Makefile.PL (file contents):
Revision 1.16 by pcg, Thu May 13 16:12:14 2004 UTC vs.
Revision 1.33 by root, Mon Oct 29 19:13:39 2007 UTC

1use ExtUtils::MakeMaker; 1use ExtUtils::MakeMaker;
2
3print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n";
2 4
3if ($] < 5.006) { 5if ($] < 5.006) {
4 print <<EOF; 6 print <<EOF;
5 7
6*** 8***
7*** WARNING: This module is quite low-level and uses undocumented perl 9*** 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, 10*** internals to do it's job. While it seems to work fine with perl-5.[6-10]
9*** 5.7 and 5.6, it has not been tested with older versions. If it 11*** 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 12*** testsuite, it should work. Otherwise you should either upgrade or fix it ;)
11*** should either upgrade or fix it ;)
12*** 13***
13*** Marc Lehmann <pcg\@goof.com> 14*** Marc Lehmann <schmorp\@schmorp.de>
14*** 15***
15 16
16EOF 17EOF
17} 18}
18 19
19if (eval { require Event }) { 20if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) { 21 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
21 print "*** Please read the INSTALL file, you need a patched Event.\n";
22 } elsif ($Event::VERSION == 0.88) {
23 print <<EOF 22 print <<EOF
24 23
25*** 24***
26*** WARNING: Event version $Event::VERSION found, NOT building Event support. 25*** WARNING: Event version $Event::VERSION found, NOT building Event support.
27*** 26***
28*** This version of Event is broken. The only currently known non-broken 27*** This version of Event is broken. The only currently known non-broken
29*** version of Event is 0.87. Please install this version, or try with a 28*** versions of Event are 0.87 and 0.89+. Please install one of those
30*** newer version that hopefully has the bug fixed. 29*** versions.
31*** 30***
32 31
33EOF 32EOF
34 } else { 33 } else {
35 $EVENT = 1; 34 $EVENT = 1;
36 $DEFINE .= " -DHAVE_EVENT=1"; 35 $DEFINE .= " -DHAVE_EVENT=1";
37 print "\nEvent version $Event::VERSION found, building Event support.\n\n"; 36 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
38 } 37 }
39 print "\n";
40} else { 38} else {
41 print "\n*** Event not found, not build Event support.\n\n"; 39 print "\n*** Event not found, not build Event support.\n\n";
40}
41
42if (eval { require EV }) {
43 $EV = 1;
44 $DEFINE .= " -DHAVE_EV=1";
45 print "\nEV version $EV::VERSION found, building EV support.\n\n";
46} else {
47 print "\n*** EV not found, not build EV support.\n\n";
42} 48}
43 49
44WriteMakefile( 50WriteMakefile(
45 dist => { 51 dist => {
46 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 52 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
47 COMPRESS => 'gzip -9v', 53 COMPRESS => 'gzip -9v',
48 SUFFIX => '.gz', 54 SUFFIX => '.gz',
49 }, 55 },
50 NAME => "Coro", 56 NAME => "Coro",
51 VERSION_FROM => "Coro.pm", 57 VERSION_FROM => "Coro.pm",
52 DIR => ['Coro', ($EVENT ? 'Event' : ())], 58 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())],
53 PREREQ_PM => { 59 PREREQ_PM => {
54 Event => 0.86,
55 Scalar::Util => 0.00, 60 Scalar::Util => 0.00,
61 AnyEvent => 2.51,
62 Storable => 2.15,
63 Time::HiRes => 0,
64
65 # for Coro::Event
66 Event => 1.06,
67
68 # for Coro::EV
69 EV => 0.03,
70
71 # for Coro::AIO
72 IO::AIO => 2.3,
56 }, 73 },
57 PM => { 74 PM => {
58 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 75 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
59 76
60 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 77 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
61 78
62 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', 79 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
63 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h', 80 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
64 81
65 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', 82# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
66 83
67 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', 84 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
68 85
69 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm', 86 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
70 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 87 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
71 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 88 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
72 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 89 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
73 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 90 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
74 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 91 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
92
93 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm',
94 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
95 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm',
96 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm',
97 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm',
98
99 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
100 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm',
101 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm',
75 }, 102 },
76); 103);
77 104
78sub MY::postamble { 105sub MY::postamble {
79 <<EOF; 106 <<EOF;
80 107
81# set \$VERSION in all modules 108# set \$VERSION in all modules
82setver: 109setver:
83 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm 110 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
84 111
85EOF 112EOF
86} 113}
87 114
88 115

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines