From ec89318a57e1119a92b15815c5a791f79519191d Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Tue, 10 Apr 2012 17:32:16 +0200 Subject: [PATCH 1/2] Add Wx and Growl::GNTP to recommended modules. --- Build.PL | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Build.PL b/Build.PL index 961239562..03859b000 100644 --- a/Build.PL +++ b/Build.PL @@ -21,6 +21,10 @@ my $build = Module::Build->new( build_requires => { 'Test::More' => '0.10', }, + recommends => { + 'Growl::GNTP' => '0.15', + 'Wx' => '0.9901', + }, script_files => ['slic3r.pl'], ); $build->dispatch('installdeps'); From f025830168f30510ca20e7014b5741da2dba2dc2 Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Tue, 10 Apr 2012 17:34:11 +0200 Subject: [PATCH 2/2] Add perl 5.10.0 as minimum required perl version. --- Build.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Build.PL b/Build.PL index 03859b000..6634232a1 100644 --- a/Build.PL +++ b/Build.PL @@ -15,6 +15,7 @@ my $build = Module::Build->new( 'Math::Geometry::Voronoi' => '1.3', 'Math::PlanePath' => '53', 'Moo' => '0', + 'perl' => '5.10.0', 'Time::HiRes' => '0', 'XXX' => '0', },