--- AnyEvent/Makefile.PL 2013/08/21 08:40:28 1.40 +++ AnyEvent/Makefile.PL 2020/07/25 22:20:29 1.45 @@ -1,6 +1,9 @@ use ExtUtils::MakeMaker; -use 5.008001; # AnyEvent perl event loop seems to work with 5.6, other modules not +# AnyEvent perl event loop seems to work with 5.6, other modules not +eval 'use Canary::Stability AnyEvent => 1, 5.008001'; + +our %PREREQ_PM; print < "AnyEvent", VERSION_FROM => "lib/AnyEvent.pm", PMLIBDIRS => ["lib"], -# PREREQ_PM => { -# Task::Weaken => 0, -# }, + PREREQ_PM => { + %PREREQ_PM, + }, + CONFIGURE_REQUIRES => { "ExtUtils::MakeMaker" => 6.52, "Canary::Stability" => 0 }, META_MERGE => { recommends => { "Task::Weaken" => 0, @@ -67,6 +84,7 @@ 'lib/AnyEvent/Impl/Perl.pm' => '$(INST_LIB)/AnyEvent/Impl/Perl.pm', 'lib/AnyEvent/Impl/Qt.pm' => '$(INST_LIB)/AnyEvent/Impl/Qt.pm', 'lib/AnyEvent/Impl/Tk.pm' => '$(INST_LIB)/AnyEvent/Impl/Tk.pm', + 'lib/AnyEvent/Impl/UV.pm' => '$(INST_LIB)/AnyEvent/Impl/UV.pm', 'lib/AnyEvent/IO.pm' => '$(INST_LIB)/AnyEvent/IO.pm', 'lib/AnyEvent/IO/IOAIO.pm' => '$(INST_LIB)/AnyEvent/IO/IOAIO.pm', 'lib/AnyEvent/IO/Perl.pm' => '$(INST_LIB)/AnyEvent/IO/Perl.pm',