From c171b044b9552d60649a4aa6430aff9528937a39 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Mon, 14 Jul 2008 16:34:06 +0000 Subject: [PATCH] fix features with newer Module::Install git-svn-id: https://perl-cwmp.googlecode.com/svn/trunk@240 836a5e1a-633d-0410-964b-294494ad4392 --- Makefile.PL | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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, # ], ); -- 2.20.1