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

Comparing Coro/Makefile.PL (file contents):
Revision 1.6 by root, Wed Jul 25 04:14:37 2001 UTC vs.
Revision 1.7 by root, Thu Aug 16 21:55:34 2001 UTC

15*** 15***
16 16
17EOF 17EOF
18} 18}
19 19
20$EVENT = eval { require Event };
21
20WriteMakefile( 22WriteMakefile(
21 dist => { 23 dist => {
22 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 24 PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
23 COMPRESS => 'gzip -9v', 25 COMPRESS => 'gzip -9v',
24 SUFFIX => '.gz', 26 SUFFIX => '.gz',
25 }, 27 },
26 NAME => "Coro", 28 NAME => "Coro",
27 VERSION_FROM => "Coro.pm", 29 VERSION_FROM => "Coro.pm",
28 DIR => ['Coro'], 30 DIR => ['Coro', ($EVENT ? 'Event' : ())],
29 PREREQ_PM => { 31 PREREQ_PM => {
30 Event => 0.84, # yes, 0.83 and below have serious bugs 32 Event => 0.83, # still, 0.83 and below have serious bugs(!)
31 }, 33 },
34 PM => {
35 'Coro.pm' => '$(INST_LIBDIR)/Coro/Coro.pm',
36 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
37
38 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
39 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
40
41 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
42
43 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
44
45 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
46 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
47 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
48 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
49
50 $EVENT ? (
51 'Event/Event.pm' => '$(INST_LIBDIR)/Coro/Event.pm',
52 'Event/Handle.pm'=> '$(INST_LIBDIR)/Coro/Handle.pm',
53 'Event/Socket.pm'=> '$(INST_LIBDIR)/Coro/Socket.pm',
54 'Event/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm',
55 ) : (),
56 },
32); 57);
33 58
34sub MY::postamble { 59sub MY::postamble {
35 <<EOF; 60 <<EOF;
36 61

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines