From: Tomas Doran Date: Fri, 29 Apr 2011 12:07:21 +0000 (+0100) Subject: Make Makefile.PL features work again. RT#67170 X-Git-Tag: 0.30~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9566cef29cefd7e3571a8dc4c8fc75d88e395b2a;p=gitmo%2FMooseX-Storage.git Make Makefile.PL features work again. RT#67170 --- diff --git a/Changes b/Changes index dddaee2..723094a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for MooseX-Storage +0.30 + * Make Makefile.PL features work again. RT#67170 + 0.29 * Remove use of Test::TempDir in favor of File::Temp (gphat) diff --git a/Makefile.PL b/Makefile.PL index fb4ba24..5e52ece 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -15,10 +15,12 @@ author_requires 'Test::Without::Module'; # you should have at least one # serialization format +auto_install; # Needed for features to work. RT#67170 feature 'JSON', -default => 1, 'JSON::Any' => '1.15', 'Test::JSON' => '0.06'; + author_requires 'JSON::Any' => '1.15'; author_requires 'Test::JSON' => '0.06';