From: Dobrica Pavlinusic Date: Mon, 14 Jul 2008 16:34:06 +0000 (+0000) Subject: fix features with newer Module::Install X-Git-Url: http://git.rot13.org/?p=perl-cwmp.git;a=commitdiff_plain;h=c171b044b9552d60649a4aa6430aff9528937a39 fix features with newer Module::Install git-svn-id: https://perl-cwmp.googlecode.com/svn/trunk@240 836a5e1a-633d-0410-964b-294494ad4392 --- diff --git a/Makefile.PL b/Makefile.PL index 874bd87..80c47eb 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -30,28 +30,28 @@ build_requires 'Test::More'; features( 'CWMP::Store::YAML' => [ -default => 1, - recommends('YAML::Syck' => 0.91), + 'YAML::Syck' => 0.91, ], 'CWMP::Store::JSON' => [ -default => 1, - recommends('JSON::XS'), + 'JSON::XS', ], 'Command-line access to modems (tcli.pl)' => [ -default => 1, - recommends('Expect'), - recommends('Net::Telnet'), + 'Expect', + 'Net::Telnet', ], 'HTML documentation (make html)' => [ -default => 0, - recommends('Pod::Xhtml'), + 'Pod::Xhtml', ], 'Pod coverage tests (for developers)' => [ -default => 0, - recommends('Test::Pod::Coverage'), + 'Test::Pod::Coverage', ], # 'Memory leak detection (for developers)' => [ # -default => 0, -# recommends('Devel::LeakTrace::Fast' => 0.11), +# 'Devel::LeakTrace::Fast' => 0.11, # ], );