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

Comparing Coro/Makefile.PL (file contents):
Revision 1.59 by root, Tue Jul 14 00:55:10 2009 UTC vs.
Revision 1.69 by root, Wed Dec 5 01:09:12 2012 UTC

1use ExtUtils::MakeMaker; 1use ExtUtils::MakeMaker;
2
3use 5.008002;
2 4
3unless (-e "Coro/libcoro/coro.c") { 5unless (-e "Coro/libcoro/coro.c") {
4 print <<EOF; 6 print <<EOF;
5 7
6*** 8***
13 exit 1; 15 exit 1;
14} 16}
15 17
16print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n"; 18print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n";
17 19
18if ($] < 5.006) {
19 print <<EOF;
20
21***
22*** WARNING: This module is quite low-level and uses undocumented perl
23*** internals to do it's job. While it seems to work fine with perl-5.[6-10]
24*** it has not been tested with older versions. If it compiles and passes the
25*** testsuite, it should work. Otherwise you should either upgrade or fix it ;)
26***
27*** Marc Lehmann <schmorp\@schmorp.de>
28***
29
30EOF
31}
32
33if (eval { require Event }) { 20if (eval { require Event }) {
34 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) { 21 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
35 print <<EOF 22 print <<EOF
36 23
37*** 24***
38*** WARNING: Event version $Event::VERSION found, NOT building Event support. 25*** WARNING: Event version $Event::VERSION found, NOT building Event support.
39*** 26***
40*** 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
41*** versions of Event are 0.87 and 0.89+. Please install one of those 28*** versions of Event are 0.87 and 0.89+. Please install one of those
42*** versions. 29*** versions.
47 $EVENT = 1; 34 $EVENT = 1;
48 $DEFINE .= " -DHAVE_EVENT=1"; 35 $DEFINE .= " -DHAVE_EVENT=1";
49 print "\nEvent version $Event::VERSION found, building Event support.\n\n"; 36 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
50 } 37 }
51} else { 38} else {
52 print "\n*** Event not found, not build Event support.\n\n"; 39 print "\n*** Event not found, not building Event support.\n\n";
53} 40}
54 41
55if (eval { require EV }) { 42if (eval { require EV }) {
56 if ($EV::VERSION < 3.3) { 43 if ($EV::VERSION < 4.0) {
57 print <<EOF 44 print <<EOF
58 45
59***
60*** WARNING: Event version $EV::VERSION found, NOT building EV support.
61*** 46***
47*** WARNING: EV version $EV::VERSION found, NOT building EV support.
48***
62*** This version is ABI-incompatible with Coro, please upgrade to at least 3.3. 49*** This version is ABI-incompatible with Coro, please upgrade to at least 4.0.
63*** 50***
64 51
65EOF 52EOF
66 } else { 53 } else {
67 $EV = 1; 54 $EV = 1;
68 $DEFINE .= " -DHAVE_EV=1"; 55 $DEFINE .= " -DHAVE_EV=1";
69 print "\nEV version $EV::VERSION found, building EV support.\n\n"; 56 print "\nEV version $EV::VERSION found, building EV support.\n\n";
70 } 57 }
71} else { 58} else {
72 print "\n*** EV not found, not build EV support.\n\n"; 59 print "\n*** EV not found, not building EV support.\n\n";
73} 60}
74 61
75WriteMakefile( 62WriteMakefile(
76 dist => { 63 dist => {
77 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 . ;',
82 VERSION_FROM => "Coro.pm", 69 VERSION_FROM => "Coro.pm",
83 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())], 70 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())],
84 PREREQ_PM => { 71 PREREQ_PM => {
85 common::sense => 0, 72 common::sense => 0,
86 Scalar::Util => 0.00, 73 Scalar::Util => 0.00,
87 AnyEvent => 4.800001, 74 AnyEvent => 5.0,
88 Storable => 2.15, 75 Storable => 2.15,
89 Time::HiRes => 0, 76 Time::HiRes => 0,
90 Guard => 0.5, 77 Guard => 0.5,
91 78
92 # for Coro::Event 79 # for Coro::Event
93 #Event => 1.06, 80 #Event => 1.06,
94 81
95 # for Coro::EV 82 # for Coro::EV
96 #EV => 3.3, 83 #EV => 4.0,
97 84
98 # for Coro::AIO 85 # for Coro::AIO
99 #IO::AIO => 2.3, 86 #IO::AIO => 2.3,
100 #AnyEvent::AIO => 1.0, 87 #AnyEvent::AIO => 1.1,
101 88
102 # for Coro::BDB 89 # for Coro::BDB
103 #BDB => 1.5, 90 #BDB => 1.5,
104 #AnyEvent::BDB => 1.0, 91 #AnyEvent::BDB => 1.0,
105 }, 92 },
108 # to build properly without its dependencies installed 95 # to build properly without its dependencies installed
109 # needs his brain rearranged dramatically. 96 # needs his brain rearranged dramatically.
110 META_MERGE => { 97 META_MERGE => {
111 recommends => { 98 recommends => {
112 Event => 1.08, 99 Event => 1.08,
113 EV => 3.0, 100 EV => 4.0,
114 IO::AIO => 3.1, 101 IO::AIO => 3.1,
102 BDB => 0,
103 AnyEvent => 7.0,
115 AnyEvent::AIO => 1.0, 104 AnyEvent::AIO => 1.0,
116 BDB => 0,
117 AnyEvent::BDB => 1.0, 105 AnyEvent::BDB => 1.0,
118 } 106 }
119 }, 107 },
120 PM => { 108 PM => {
121 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 109 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
122 110
123 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 111 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
112 'Coro/jit-amd64-unix.pl' => '$(INST_LIBDIR)/Coro/jit-amd64-unix.pl',
113 'Coro/jit-x86-unix.pl' => '$(INST_LIBDIR)/Coro/jit-x86-unix.pl',
124 114
125 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', 115 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
126 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h', 116 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
127 117
128# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', 118# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
129 119
130 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', 120 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
131 121
132 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm', 122 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
133 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 123 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
134 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 124 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
135 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 125 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
136 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 126 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
137 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 127 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
138 128
139 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm', 129 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm',
140 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm', 130 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
141 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm', 131 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm',
142 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm', 132 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm',
143 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm', 133 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm',
144 134
145 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm', 135 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
146 'Coro/BDB.pm' => '$(INST_LIBDIR)/Coro/BDB.pm', 136 'Coro/BDB.pm' => '$(INST_LIBDIR)/Coro/BDB.pm',
147 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm', 137 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm',
148 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm', 138 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm',
149 'Coro/AnyEvent.pm' => '$(INST_LIBDIR)/Coro/AnyEvent.pm', 139 'Coro/AnyEvent.pm' => '$(INST_LIBDIR)/Coro/AnyEvent.pm',
150 }, 140 },
151); 141);
152 142
153sub MY::postamble { 143sub MY::postamble {
154 <<EOF; 144 <<EOF;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines