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

Comparing Coro/Event/Makefile.PL (file contents):
Revision 1.2 by root, Thu Aug 16 22:09:12 2001 UTC vs.
Revision 1.7 by root, Sun Nov 5 19:16:09 2006 UTC

5 5
6use Config; 6use Config;
7 7
8$|=1; 8$|=1;
9 9
10if (eval { require Event }) {
11 $EVENT = 1;
12 $DEFINE .= " -DHAVE_EVENT=1";
13 print "\n*** Event version $Event::VERSION found, building Event support.\n",
14 "*** Please read the INSTALL file, you might need to patch Event.\n\n";
15} else {
16 print "\n*** Event not found, not build Event support.\n\n";
17 $EVENT = 0;
18}
19
20WriteMakefile(Event::MakeMaker::event_args( 10WriteMakefile(Event::MakeMaker::event_args(
21 NAME => "Coro::Event", 11 NAME => "Coro::Event",
22 VERSION_FROM => "Event.pm", 12 VERSION_FROM => "Event.pm",
23 DEFINE => $DEFINE, 13 DEFINE => $DEFINE,
24 DIR => [], 14 DIR => [],
25 PM => { 15 PM => {
26 'Event.pm' => '$(INST_LIBDIR)/Event.pm', 16 'Event.pm' => '$(INST_LIBDIR)/Event.pm',
27 'Handle.pm' => '$(INST_LIBDIR)/Handle.pm', 17 'Handle.pm' => '$(INST_LIBDIR)/Handle.pm',
28 'Socket.pm' => '$(INST_LIBDIR)/Socket.pm', 18 'Socket.pm' => '$(INST_LIBDIR)/Socket.pm',
29 'Util.pm' => '$(INST_LIBDIR)/Util.pm',
30 }, 19 },
31)); 20));
32 21
33 22
34 23

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines