--- cvsroot/Coro/Makefile.PL 2005/12/12 20:43:45 1.20 +++ cvsroot/Coro/Makefile.PL 2006/11/06 19:26:10 1.25 @@ -5,10 +5,9 @@ *** *** 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 fix it ;) +*** 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 *** @@ -49,8 +48,14 @@ VERSION_FROM => "Coro.pm", DIR => ['Coro', ($EVENT ? 'Event' : ())], PREREQ_PM => { - Event => 0.86, 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.pm', @@ -70,6 +75,14 @@ 'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm', 'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm', 'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm', + + 'Coro/Util.pm' => '$(INST_LIBDIR)/Coro/Util.pm', + 'Coro/Select.pm' => '$(INST_LIBDIR)/Coro/Select.pm', + 'Coro/Handle.pm' => '$(INST_LIBDIR)/Coro/Handle.pm', + 'Coro/Socket.pm' => '$(INST_LIBDIR)/Coro/Socket.pm', + + 'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm', + 'Coro/LWP.pm' => '$(INST_LIBDIR)/Coro/LWP.pm', }, );