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.45 by root, Fri May 23 21:04:11 2008 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines