ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Makefile.PL
Revision: 1.70
Committed: Fri Feb 8 22:29:18 2013 UTC (11 years, 3 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-6_31, rel-6_29, rel-6_28
Changes since 1.69: +0 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 5.008002;
4
5 unless (-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
14 EOF
15 exit 1;
16 }
17
18 print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n";
19
20 if (eval { require Event }) {
21 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
22 print <<EOF
23
24 ***
25 *** WARNING: Event version $Event::VERSION found, NOT building Event support.
26 ***
27 *** This version of Event is broken. The only currently known non-broken
28 *** versions of Event are 0.87 and 0.89+. Please install one of those
29 *** versions.
30 ***
31
32 EOF
33 } else {
34 $EVENT = 1;
35 $DEFINE .= " -DHAVE_EVENT=1";
36 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
37 }
38 } else {
39 print "\n*** Event not found, not building Event support.\n\n";
40 }
41
42 if (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
52 EOF
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";
60 }
61
62 WriteMakefile(
63 dist => {
64 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
65 COMPRESS => 'gzip -9v',
66 SUFFIX => '.gz',
67 },
68 NAME => "Coro",
69 VERSION_FROM => "Coro.pm",
70 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())],
71 PREREQ_PM => {
72 common::sense => 0,
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 # neither configure_requires nor recommends can be used
93 # for optional dependencies. whoever decided that a module needs
94 # to build properly without its dependencies installed
95 # needs his brain rearranged dramatically.
96 META_MERGE => {
97 recommends => {
98 Event => 1.08,
99 EV => 4.0,
100 IO::AIO => 3.1,
101 BDB => 0,
102 AnyEvent => 7.0,
103 AnyEvent::AIO => 1.0,
104 AnyEvent::BDB => 1.0,
105 }
106 },
107 PM => {
108 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
109
110 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
111 'Coro/jit-amd64-unix.pl' => '$(INST_LIBDIR)/Coro/jit-amd64-unix.pl',
112 'Coro/jit-x86-unix.pl' => '$(INST_LIBDIR)/Coro/jit-x86-unix.pl',
113
114 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
115 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
116
117 # 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
118
119 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
120
121 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
122 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
123 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
124 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
125 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
126 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
127
128 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm',
129 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
130 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm',
131 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm',
132 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm',
133
134 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
135 'Coro/BDB.pm' => '$(INST_LIBDIR)/Coro/BDB.pm',
136 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm',
137 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm',
138 'Coro/AnyEvent.pm' => '$(INST_LIBDIR)/Coro/AnyEvent.pm',
139 },
140 );
141
142 sub MY::postamble {
143 <<EOF;
144
145 # set \$VERSION in all modules
146 setver:
147 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm EV/*.pm Event/*.pm
148
149 EOF
150 }
151
152