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.61 by root, Thu Jul 23 01:35:18 2009 UTC

1use ExtUtils::MakeMaker; 1use ExtUtils::MakeMaker;
2
3use 5.008002;
4
5unless (-e "Coro/libcoro/coro.c") {
6 print <<EOF;
7
8***
9*** ERROR: Coro/libcoro is missing or damaged. If you used a CVS check-out
10*** of Coro, you also have to check-out the "libcoro" module from the same CVS
11*** repository in the Coro subdirectory (i.e. Coro/Coro/libcoro from outside).
12***
13
14EOF
15 exit 1;
16}
17
18print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n";
2 19
3if ($] < 5.006) { 20if ($] < 5.006) {
4 print <<EOF; 21 print <<EOF;
5 22
6*** 23***
7*** WARNING: This module is quite low-level and uses undocumented perl 24*** 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, 25*** 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 26*** 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 27*** testsuite, it should work. Otherwise you should either upgrade or fix it ;)
11*** should either upgrade or fix it ;)
12*** 28***
13*** Marc Lehmann <pcg\@goof.com> 29*** Marc Lehmann <schmorp\@schmorp.de>
14*** 30***
15 31
16EOF 32EOF
17} 33}
18 34
19if (eval { require Event }) { 35if (eval { require Event }) {
20 if ($Event::VERSION < 0.86) { 36 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 37 print <<EOF
24 38
25*** 39***
26*** WARNING: Event version $Event::VERSION found, NOT building Event support. 40*** WARNING: Event version $Event::VERSION found, NOT building Event support.
27*** 41***
28*** This version of Event is broken. The only currently known non-broken 42*** 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 43*** versions of Event are 0.87 and 0.89+. Please install one of those
30*** newer version that hopefully has the bug fixed. 44*** versions.
31*** 45***
32 46
33EOF 47EOF
34 } else { 48 } else {
35 $EVENT = 1; 49 $EVENT = 1;
36 $DEFINE .= " -DHAVE_EVENT=1"; 50 $DEFINE .= " -DHAVE_EVENT=1";
37 print "\nEvent version $Event::VERSION found, building Event support.\n\n"; 51 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
38 } 52 }
39 print "\n";
40} else { 53} else {
41 print "\n*** Event not found, not build Event support.\n\n"; 54 print "\n*** Event not found, not build Event support.\n\n";
55}
56
57if (eval { require EV }) {
58 if ($EV::VERSION < 3.3) {
59 print <<EOF
60
61***
62*** WARNING: Event version $EV::VERSION found, NOT building EV support.
63***
64*** This version is ABI-incompatible with Coro, please upgrade to at least 3.3.
65***
66
67EOF
68 } else {
69 $EV = 1;
70 $DEFINE .= " -DHAVE_EV=1";
71 print "\nEV version $EV::VERSION found, building EV support.\n\n";
72 }
73} else {
74 print "\n*** EV not found, not build EV support.\n\n";
42} 75}
43 76
44WriteMakefile( 77WriteMakefile(
45 dist => { 78 dist => {
46 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 79 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
47 COMPRESS => 'gzip -9v', 80 COMPRESS => 'gzip -9v',
48 SUFFIX => '.gz', 81 SUFFIX => '.gz',
49 }, 82 },
50 NAME => "Coro", 83 NAME => "Coro",
51 VERSION_FROM => "Coro.pm", 84 VERSION_FROM => "Coro.pm",
52 DIR => ['Coro', ($EVENT ? 'Event' : ())], 85 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())],
53 PREREQ_PM => { 86 PREREQ_PM => {
54 Event => 0.86, 87 common::sense => 0,
55 Scalar::Util => 0.00, 88 Scalar::Util => 0.00,
89 AnyEvent => 4.81,
90 Storable => 2.15,
91 Time::HiRes => 0,
92 Guard => 0.5,
93
94 # for Coro::Event
95 #Event => 1.06,
96
97 # for Coro::EV
98 #EV => 3.3,
99
100 # for Coro::AIO
101 #IO::AIO => 2.3,
102 #AnyEvent::AIO => 1.0,
103
104 # for Coro::BDB
105 #BDB => 1.5,
106 #AnyEvent::BDB => 1.0,
107 },
108 # neither configure_requires nor recommends can be used
109 # for optional dependencies. whoever decided that a module needs
110 # to build properly without its dependencies installed
111 # needs his brain rearranged dramatically.
112 META_MERGE => {
113 recommends => {
114 Event => 1.08,
115 EV => 3.0,
116 IO::AIO => 3.1,
117 AnyEvent::AIO => 1.0,
118 BDB => 0,
119 AnyEvent::BDB => 1.0,
120 }
56 }, 121 },
57 PM => { 122 PM => {
58 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 123 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
59 124
60 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 125 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
61 126
62 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', 127 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
63 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h', 128 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
64 129
65 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', 130# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
66 131
67 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', 132 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
68 133
69 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm', 134 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
70 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 135 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
71 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 136 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
72 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 137 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
73 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 138 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
74 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 139 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
140
141 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm',
142 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
143 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm',
144 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm',
145 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm',
146
147 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
148 'Coro/BDB.pm' => '$(INST_LIBDIR)/Coro/BDB.pm',
149 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm',
150 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm',
151 'Coro/AnyEvent.pm' => '$(INST_LIBDIR)/Coro/AnyEvent.pm',
75 }, 152 },
76); 153);
77 154
78sub MY::postamble { 155sub MY::postamble {
79 <<EOF; 156 <<EOF;
80 157
81# set \$VERSION in all modules 158# set \$VERSION in all modules
82setver: 159setver:
83 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm 160 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm EV/*.pm Event/*.pm
84 161
85EOF 162EOF
86} 163}
87 164
88 165

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines