--- Coro/Makefile.PL 2001/08/16 21:55:34 1.7 +++ Coro/Makefile.PL 2006/11/04 01:31:57 1.22 @@ -5,19 +5,38 @@ *** *** WARNING: This module is quite low-level and uses undocumented perl -*** internals to do it's job. While it seems to work fine with perl-5.8, -*** 5.7 and 5.6, it has not been tested with older versions. If it -*** compiles and passes the testsuite, it should work. Otherwise you -*** should either upgrade or contact the author, maybe it can be made to -*** work... +*** internals to do it's job. While it seems to work fine with perl-5.[6-9] +*** it has not been tested with older versions. If it compiles and passes the +*** testsuite, it should work. Otherwise you should either upgrade or fix it ;) *** -*** Marc Lehmann +*** Marc Lehmann *** EOF } -$EVENT = eval { require Event }; +if (eval { require Event }) { + if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) { + print < { @@ -29,10 +48,18 @@ VERSION_FROM => "Coro.pm", DIR => ['Coro', ($EVENT ? 'Event' : ())], PREREQ_PM => { - Event => 0.83, # still, 0.83 and below have serious bugs(!) + Scalar::Util => 0.00, + + # for Coro::Event + Event => 0.86, + + # for Coro::AIO, Coro::Util + IO::AIO => 1.6, + AnyEvent => 0, }, PM => { - 'Coro.pm' => '$(INST_LIBDIR)/Coro/Coro.pm', + 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', + 'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm', 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', @@ -42,18 +69,16 @@ 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', + 'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm', 'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm', 'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm', 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', + 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', - $EVENT ? ( - 'Event/Event.pm' => '$(INST_LIBDIR)/Coro/Event.pm', - 'Event/Handle.pm'=> '$(INST_LIBDIR)/Coro/Handle.pm', - 'Event/Socket.pm'=> '$(INST_LIBDIR)/Coro/Socket.pm', - 'Event/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm', - ) : (), - }, + 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm', + 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm', + }, ); sub MY::postamble { @@ -61,7 +86,7 @@ # set \$VERSION in all modules setver: - \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm + \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm EOF }