summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2014-02-19 17:39:00 +0100
committerH.Merijn Brand <h.m.brand@xs4all.nl>2014-02-19 17:39:54 +0100
commit215554907820e516fc559dea0dba9cc33d63e205 (patch)
tree93c956b2cd19e56976a13def5484385f436fa292
parent153621ca159b5aae51e9da6bf5bb8a078405cfaf (diff)
downloadperl-215554907820e516fc559dea0dba9cc33d63e205.tar.gz
Update Config::Perl::V to 0.20
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/Config-Perl-V/V.pm12
-rw-r--r--pod/perldelta.pod6
3 files changed, 15 insertions, 5 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 567fcbf1f7..e1512adb47 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -233,7 +233,7 @@ use File::Glob qw(:case);
},
'Config::Perl::V' => {
- 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.19.tgz',
+ 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.20.tgz',
'FILES' => q[cpan/Config-Perl-V],
'EXCLUDED' => ['examples/show-v.pl'],
# Waiting to be merged upstream: see CPAN RT#92534
diff --git a/cpan/Config-Perl-V/V.pm b/cpan/Config-Perl-V/V.pm
index 448647e566..066acacd70 100644
--- a/cpan/Config-Perl-V/V.pm
+++ b/cpan/Config-Perl-V/V.pm
@@ -8,7 +8,7 @@ use warnings;
use Config;
use Exporter;
use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
-$VERSION = "0.19";
+$VERSION = "0.20";
@ISA = ("Exporter");
@EXPORT_OK = qw( plv2hash summary myconfig signature );
%EXPORT_TAGS = (
@@ -22,14 +22,17 @@ $VERSION = "0.19";
# The list are as the perl binary has stored it in PL_bincompat_options
# search for it in
-# perl.c line 1669 S_Internals_V ()
-# perl.h line 4505 PL_bincompat_options
+# perl.c line 1643 S_Internals_V ()
+# perl -ne'(/^S_Internals_V/../^}/)&&s/^\s+"( .*)"/$1/ and print' perl.c
+# perl.h line 4566 PL_bincompat_options
+# perl -ne'(/^\w.*PL_bincompat/../^\w}/)&&s/^\s+"( .*)"/$1/ and print' perl.h
my %BTD = map { $_ => 0 } qw(
DEBUGGING
NO_MATHOMS
NO_HASH_SEED
NO_TAINT_SUPPORT
+ PERL_BOOL_AS_CHAR
PERL_DISABLE_PMC
PERL_DONT_CREATE_GVSV
PERL_EXTERNAL_GLOB
@@ -76,6 +79,7 @@ my %BTD = map { $_ => 0 } qw(
MULTIPLICITY
MYMALLOC
PERLIO_LAYERS
+ PERL_DEBUG_READONLY_COW
PERL_DEBUG_READONLY_OPS
PERL_GLOBAL_STRUCT
PERL_IMPLICIT_CONTEXT
@@ -518,7 +522,7 @@ H.Merijn Brand <h.m.brand@xs4all.nl>
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2009-2013 H.Merijn Brand
+Copyright (C) 2009-2014 H.Merijn Brand
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index c3cc47f2ea..a5578d4735 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -276,6 +276,12 @@ Resolve a C++ build failure in core. [cpan #92657]
=item *
+L<Config::Perl::V> has been upgraded from version 0.19 to 0.20.
+
+Synchronize with blead (bincompat options)
+
+=item *
+
L<CPAN::Meta::YAML> has been upgraded from version 0.010 to 0.011.
=item *