my %RUN_DEPS = (
'Package::Stash' => '0.23',
- can_cc() ? (
- 'B::Hooks::EndOfScope' => '0.07', # when changing, also change version in namespace/clean.pm
- is_smoker() ? ( 'Devel::Hide' => 0 ) : (), # make sure we smoke the pure-perl version
- ) : (),
);
+my %OPT_RUN_DEPS = (can_cc() ? (
+ 'B::Hooks::EndOfScope' => '0.07', # when changing, also change version in namespace/clean.pm
+ is_smoker() ? ( 'Devel::Hide' => 0 ) : (), # make sure we smoke the pure-perl version
+) : () );
+
my %META_BITS = (
resources => {
homepage => 'http://search.cpan.org/dist/namespace-clean',
'AUTHOR' => 'Robert \'phaylon\' Sedlacek <rs@474.at>, Florian Ragwitz <rafl@debian.org>, Jesse Luehrs <doy@tozt.net>',
'PREREQ_PM' => {
- %RUN_DEPS,
+ %RUN_DEPS, %OPT_RUN_DEPS,
$mymeta_works ? () : (%BUILD_DEPS),
},