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

Comparing Coro/Makefile.PL (file contents):
Revision 1.33 by root, Mon Oct 29 19:13:39 2007 UTC vs.
Revision 1.69 by root, Wed Dec 5 01:09:12 2012 UTC

1use ExtUtils::MakeMaker; 1use ExtUtils::MakeMaker;
2 2
3print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n"; 3use 5.008002;
4 4
5if ($] < 5.006) { 5unless (-e "Coro/libcoro/coro.c") {
6 print <<EOF; 6 print <<EOF;
7 7
8*** 8***
9*** 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
10*** internals to do it's job. While it seems to work fine with perl-5.[6-10] 10*** of Coro, you also have to check-out the "libcoro" module from the same CVS
11*** it has not been tested with older versions. If it compiles and passes the 11*** repository in the Coro subdirectory (i.e. Coro/Coro/libcoro from outside).
12*** testsuite, it should work. Otherwise you should either upgrade or fix it ;)
13***
14*** Marc Lehmann <schmorp\@schmorp.de>
15*** 12***
16 13
17EOF 14EOF
15 exit 1;
18} 16}
17
18print "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n\n";
19 19
20if (eval { require Event }) { 20if (eval { require Event }) {
21 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) { 21 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
22 print <<EOF 22 print <<EOF
23 23
24*** 24***
25*** WARNING: Event version $Event::VERSION found, NOT building Event support. 25*** WARNING: Event version $Event::VERSION found, NOT building Event support.
26*** 26***
27*** 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
28*** 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
29*** versions. 29*** versions.
34 $EVENT = 1; 34 $EVENT = 1;
35 $DEFINE .= " -DHAVE_EVENT=1"; 35 $DEFINE .= " -DHAVE_EVENT=1";
36 print "\nEvent version $Event::VERSION found, building Event support.\n\n"; 36 print "\nEvent version $Event::VERSION found, building Event support.\n\n";
37 } 37 }
38} else { 38} else {
39 print "\n*** Event not found, not build Event support.\n\n"; 39 print "\n*** Event not found, not building Event support.\n\n";
40} 40}
41 41
42if (eval { require EV }) { 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 {
43 $EV = 1; 54 $EV = 1;
44 $DEFINE .= " -DHAVE_EV=1"; 55 $DEFINE .= " -DHAVE_EV=1";
45 print "\nEV version $EV::VERSION found, building EV support.\n\n"; 56 print "\nEV version $EV::VERSION found, building EV support.\n\n";
57 }
46} else { 58} else {
47 print "\n*** EV not found, not build EV support.\n\n"; 59 print "\n*** EV not found, not building EV support.\n\n";
48} 60}
49 61
50WriteMakefile( 62WriteMakefile(
51 dist => { 63 dist => {
52 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 . ;',
55 }, 67 },
56 NAME => "Coro", 68 NAME => "Coro",
57 VERSION_FROM => "Coro.pm", 69 VERSION_FROM => "Coro.pm",
58 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())], 70 DIR => ['Coro', ($EVENT ? 'Event' : ()), ($EV ? "EV" : ())],
59 PREREQ_PM => { 71 PREREQ_PM => {
72 common::sense => 0,
60 Scalar::Util => 0.00, 73 Scalar::Util => 0.00,
61 AnyEvent => 2.51, 74 AnyEvent => 5.0,
62 Storable => 2.15, 75 Storable => 2.15,
63 Time::HiRes => 0, 76 Time::HiRes => 0,
77 Guard => 0.5,
64 78
65 # for Coro::Event 79 # for Coro::Event
66 Event => 1.06, 80 #Event => 1.06,
67 81
68 # for Coro::EV 82 # for Coro::EV
69 EV => 0.03, 83 #EV => 4.0,
70 84
71 # for Coro::AIO 85 # for Coro::AIO
72 IO::AIO => 2.3, 86 #IO::AIO => 2.3,
87 #AnyEvent::AIO => 1.1,
88
89 # for Coro::BDB
90 #BDB => 1.5,
91 #AnyEvent::BDB => 1.0,
92 },
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 }
73 }, 107 },
74 PM => { 108 PM => {
75 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', 109 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
76 110
77 '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',
78 114
79 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', 115 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
80 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h', 116 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
81 117
82# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', 118# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
83 119
84 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', 120 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
85 121
86 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm', 122 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
87 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 123 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
88 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 124 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
89 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 125 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
90 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 126 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
91 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', 127 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
92 128
93 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm', 129 'Coro/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.pm',
94 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm', 130 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
95 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm', 131 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm',
96 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm', 132 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm',
97 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm', 133 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm',
98 134
99 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm', 135 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
136 'Coro/BDB.pm' => '$(INST_LIBDIR)/Coro/BDB.pm',
100 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm', 137 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm',
101 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm', 138 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm',
139 'Coro/AnyEvent.pm' => '$(INST_LIBDIR)/Coro/AnyEvent.pm',
102 }, 140 },
103); 141);
104 142
105sub MY::postamble { 143sub MY::postamble {
106 <<EOF; 144 <<EOF;
107 145
108# set \$VERSION in all modules 146# set \$VERSION in all modules
109setver: 147setver:
110 \$(PERL) -pi -e 's/^(\\s*(our\\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
111 149
112EOF 150EOF
113} 151}
114 152
115 153

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines