Author: dagolden
Date: Fri Jun 26 04:06:19 2009
New Revision: 12914
Modified:
Module-Build/trunk/Changes
Module-Build/trunk/lib/Module/Build/Base.pm
Log:
add configure_requires to prereq_report; add missing Changes
Modified: Module-Build/trunk/Changes
==============================================================================
--- Module-Build/trunk/Changes (original)
+++ Module-Build/trunk/Changes Fri Jun 26 04:06:19 2009
@@ -6,6 +6,9 @@
- Don't try utf8 YAML I/O on Perl 5.6 [David Golden]
Other
+ - configure_requires added to prereq report (RT#47254) [Curtis Jewell]
+ - updated Module::Build::Version to match forthcoming version.pm 0.77
+ (RT#47256) [John Peacock]
- skips xs.t and ppm.t when perl was not compiled with dynamic loading
since Module::Buld does not support static linking (RT#46178)
[David Golden]
Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Fri Jun 26 04:06:19 2009
@@ -2077,7 +2077,7 @@
sub prereq_data {
my $self = shift;
- my @types = @{ $self->prereq_action_types };
+ my @types = ('configure_requires', @{ $self->prereq_action_types } );
my $info = { map { $_ => $self->$_() } grep { %{$self->$_()} } @types };
return $info;
}