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.74 by root, Fri Jul 14 02:51:11 2017 UTC

1use ExtUtils::MakeMaker; 1use ExtUtils::MakeMaker;
2 2
3if ($] < 5.006) { 3use Canary::Stability Coro => 1, 5.008009;
4
5unless (-e "Coro/libcoro/coro.c") {
4 print <<EOF; 6 print <<EOF;
5 7
6*** 8***
7*** WARNING: This module is quite low-level and uses undocumented perl 9*** ERROR: Coro/libcoro is missing or damaged. If you used a CVS check-out
8*** internals to do it's job. While it seems to work fine with perl-5.8, 10*** of Coro, you also have to check-out the "libcoro" module from the same CVS
9*** 5.7 and 5.6, it has not been tested with older versions. If it 11*** repository in the Coro subdirectory (i.e. Coro/Coro/libcoro from outside).
10*** compiles and passes the testsuite, it should work. Otherwise you
11*** should either upgrade or fix it ;)
12***
13*** Marc Lehmann <pcg\@goof.com>
14*** 12***
15 13
16EOF 14EOF
15 exit 1;
17} 16}
18 17
18print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n";
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 building Event support.\n\n";
40}
41
42if (eval { require EV }) {
43 if ($EV::VERSION < 4.0) {
44 print <<EOF
45
46***
47*** WARNING: EV version $EV::VERSION found, NOT building EV support.
48***
49*** This version is ABI-incompatible with Coro, please upgrade to at least 4.0.
50***
51
52EOF
53 } else {
54 $EV = 1;
55 $DEFINE .= " -DHAVE_EV=1";
56 print "\nEV version $EV::VERSION found, building EV support.\n\n";
57 }
58} else {
59 print "\n*** EV not found, not building EV support.\n\n";
42} 60}
43 61
44WriteMakefile( 62WriteMakefile(
45 dist => { 63 dist => {
46 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 64 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
47 COMPRESS => 'gzip -9v', 65 COMPRESS => 'gzip -9v',
48 SUFFIX => '.gz', 66 SUFFIX => '.gz',
49 }, 67 },
50 NAME => "Coro", 68 NAME => "Coro",
51 VERSION_FROM => "Coro.pm", 69 VERSION_FROM => "Coro.pm",
52 DIR => ['Coro', ($EVENT ? 'Event' : ())], 70 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())],
53 PREREQ_PM => { 71 PREREQ_PM => {
54 Event => 0.86, 72 common::sense => 0,
55 Scalar::Util => 0.00, 73 Scalar::Util => 0.00,
74 AnyEvent => 5.0,
75 Storable => 2.15,
76 Guard => 0.5,
77
78 # for Coro::Event
79 #Event => 1.06,
80
81 # for Coro::EV
82 #EV => 4.0,
83
84 # for Coro::AIO
85 #IO::AIO => 2.3,
86 #AnyEvent::AIO => 1.1,
87
88 # for Coro::BDB
89 #BDB => 1.5,
90 #AnyEvent::BDB => 1.0,
91 },
92 CONFIGURE_REQUIRES => { ExtUtils::MakeMaker => 6.52, Canary::Stability => 0 },
93 # neither configure_requires nor recommends can be used
94 # for optional dependencies. whoever decided that a module needs
95 # to build properly without its dependencies installed
96 # needs his brain rearranged dramatically.
97 META_MERGE => {
98 recommends => {
99 Event => 1.08,
100 EV => 4.0,
101 IO::AIO => 3.1,
102 BDB => 0,
103 AnyEvent => 7.0,
104 AnyEvent::AIO => 1.0,
105 AnyEvent::BDB => 1.0,
106 }
56 }, 107 },
57 PM => { 108 PM => {
58 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 109 'Coro.pm' => '$(INST_LIB)/Coro.pm',
59 110
60 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 111 'Coro/State.pm' => '$(INST_LIB)/Coro/State.pm',
112 'Coro/jit-amd64-unix.pl' => '$(INST_LIB)/Coro/jit-amd64-unix.pl',
113 'Coro/jit-x86-unix.pl' => '$(INST_LIB)/Coro/jit-x86-unix.pl',
61 114
62 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', 115 'Coro/MakeMaker.pm' => '$(INST_LIB)/Coro/MakeMaker.pm',
63 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h', 116 'Coro/CoroAPI.h' => '$(INST_LIB)/Coro/CoroAPI.h',
64 117
65 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', 118# 'Coro/Cont.pm' => '$(INST_LIB)/Coro/Cont.pm',
66 119
67 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', 120 'Coro/Specific.pm' => '$(INST_LIB)/Coro/Specific.pm',
68 121
69 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm', 122 'Coro/Timer.pm' => '$(INST_LIB)/Coro/Timer.pm',
70 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 123 'Coro/Signal.pm' => '$(INST_LIB)/Coro/Signal.pm',
71 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 124 'Coro/Channel.pm' => '$(INST_LIB)/Coro/Channel.pm',
72 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 125 'Coro/Semaphore.pm' => '$(INST_LIB)/Coro/Semaphore.pm',
73 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 126 'Coro/SemaphoreSet.pm'=> '$(INST_LIB)/Coro/SemaphoreSet.pm',
74 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 127 'Coro/RWLock.pm' => '$(INST_LIB)/Coro/RWLock.pm',
128
129 'Coro/Debug.pm' => '$(INST_LIB)/Coro/Debug.pm',
130 'Coro/Util.pm' => '$(INST_LIB)/Coro/Util.pm',
131 'Coro/Select.pm' => '$(INST_LIB)/Coro/Select.pm',
132 'Coro/Handle.pm' => '$(INST_LIB)/Coro/Handle.pm',
133 'Coro/Socket.pm' => '$(INST_LIB)/Coro/Socket.pm',
134
135 'Coro/AIO.pm' => '$(INST_LIB)/Coro/AIO.pm',
136 'Coro/BDB.pm' => '$(INST_LIB)/Coro/BDB.pm',
137 'Coro/LWP.pm' => '$(INST_LIB)/Coro/LWP.pm',
138 'Coro/Storable.pm' => '$(INST_LIB)/Coro/Storable.pm',
139 'Coro/AnyEvent.pm' => '$(INST_LIB)/Coro/AnyEvent.pm',
75 }, 140 },
76); 141);
77 142
78sub MY::postamble { 143sub MY::postamble {
79 <<EOF; 144 <<EOF;
80 145
81# set \$VERSION in all modules 146# set \$VERSION in all modules
82setver: 147setver:
83 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm 148 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm EV/*.pm Event/*.pm
84 149
85EOF 150EOF
86} 151}
87 152
88 153

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines