fix use of variables that are no longer defined
[p5sagit/Devel-Declare.git] / Makefile.PL
index 6cb25a0..05017f8 100644 (file)
@@ -17,6 +17,10 @@ my %TEST_DEPS = (
 # have to do this since old EUMM dev releases miss the eval $VERSION line
 my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 };
 
+use Data::Dumper;
+local $Data::Dumper::Sortkeys = 1;
+print STDERR "------------- calling WriteMakefile(): ExUtils::Depends get_makefile_vars says ", Dumper({ $pkg->get_makefile_vars });
+
 WriteMakefile(
     NAME => 'Devel::Declare',
     AUTHOR => 'Matt S Trout - <mst@shadowcat.co.uk> - original author',
@@ -24,12 +28,9 @@ WriteMakefile(
     MIN_PERL_VERSION => '5.008001',
 
     CONFIGURE_REQUIRES => {
-        # minimum version that works on Win32+gcc
-        'ExtUtils::Depends' => 0.302,
+        'ExtUtils::Depends' => 0.8000,
 
-        # minimum version that depends on ExtUtils::Depends 0.302
-        'B::Hooks::OP::Check' => '0.19',
-        'B::Hooks::OP::Check::Install::Files' => '0',
+        'B::Hooks::OP::Check' => '0.22',
     },
 
     PREREQ_PM => {
@@ -90,3 +91,5 @@ WriteMakefile(
     $pkg->get_makefile_vars,
 );
 
+print STDERR "------- finished Makefile.PL\n";
+