--- cvsroot/Coro/Makefile.PL 2004/05/30 19:26:39 1.17 +++ cvsroot/Coro/Makefile.PL 2007/09/19 21:39:15 1.31 @@ -5,12 +5,11 @@ *** *** 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 +*** Marc Lehmann *** EOF @@ -24,7 +23,7 @@ *** WARNING: Event version $Event::VERSION found, NOT building Event support. *** *** This version of Event is broken. The only currently known non-broken -*** versions of Event are 0.87 and 0.89+. Please install one of these +*** versions of Event are 0.87 and 0.89+. Please install one of those *** versions. *** @@ -49,8 +48,15 @@ VERSION_FROM => "Coro.pm", DIR => ['Coro', ($EVENT ? 'Event' : ())], PREREQ_PM => { - Event => 0.86, Scalar::Util => 0.00, + + # for Coro::Event + Event => 1.06, + Time::HiRes => 0, + + # for Coro::AIO, Coro::Util + IO::AIO => 2.3, + AnyEvent => 2.51, }, PM => { 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm', @@ -60,7 +66,7 @@ 'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm', 'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h', - 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', +# 'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm', 'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm', @@ -70,6 +76,16 @@ '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/Debug.pm' => '$(INST_LIBDIR)/Coro/Debug.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', + 'Coro/Storable.pm' => '$(INST_LIBDIR)/Coro/Storable.pm', }, ); @@ -78,7 +94,7 @@ # set \$VERSION in all modules setver: - \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm + \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm EOF }