Skip to content

Commit 72b2b1d

Browse files
author
H.Merijn Brand
committed
Update Config::Perl::V to version 0.31
Adds USE_THREAD_SAFE_LOCALE
1 parent 0d9e812 commit 72b2b1d

22 files changed

+30
-23
lines changed

Porting/Maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ package Maintainers;
227227
},
228228

229229
'Config::Perl::V' => {
230-
'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.30.tgz',
230+
'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.31.tgz',
231231
'FILES' => q[cpan/Config-Perl-V],
232232
'EXCLUDED' => [qw(
233233
examples/show-v.pl

cpan/Config-Perl-V/V.pm

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use warnings;
66
use Config;
77
use Exporter;
88
use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
9-
$VERSION = "0.30";
9+
$VERSION = "0.32";
1010
@ISA = qw( Exporter );
1111
@EXPORT_OK = qw( plv2hash summary myconfig signature );
1212
%EXPORT_TAGS = (
@@ -70,6 +70,7 @@ my %BTD = map { $_ => 0 } qw(
7070
USE_NO_REGISTRY
7171
USE_PERL_ATOF
7272
USE_SITECUSTOMIZE
73+
USE_THREAD_SAFE_LOCALE
7374
7475
DEBUG_LEAKING_SCALARS
7576
DEBUG_LEAKING_SCALARS_FORK_DUMP
@@ -404,9 +405,9 @@ Config::Perl::V - Structured data retrieval of perl -V output
404405
405406
=head2 $conf = myconfig ()
406407
407-
This function will collect the data described in L<the hash structure> below,
408+
This function will collect the data described in L</"The hash structure"> below,
408409
and return that as a hash reference. It optionally accepts an option to
409-
include more entries from %ENV. See L<environment> below.
410+
include more entries from %ENV. See L</environment> below.
410411
411412
Note that this will not work on uninstalled perls when called with
412413
C<-I/path/to/uninstalled/perl/lib>, but it works when that path is in

cpan/Config-Perl-V/t/20_plv56.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 99;
8+
my $tests = 100;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/21_plv58.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 99;
8+
my $tests = 100;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/22_plv510.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 98;
8+
my $tests = 99;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/23_plv512.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 100;
8+
my $tests = 101;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/24_plv514.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 100;
8+
my $tests = 101;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/25_plv516.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 99;
8+
my $tests = 100;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/25_plv5162.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 157;
8+
my $tests = 158;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/26_plv518.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 118;
8+
my $tests = 119;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/26_plv5182.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 118;
8+
my $tests = 119;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/27_plv5200.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 118;
8+
my $tests = 119;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/27_plv5202.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 119;
8+
my $tests = 120;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/28_plv5220.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 119;
8+
my $tests = 120;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/28_plv52201w.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 119;
8+
my $tests = 120;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/29_plv5235w.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 119;
8+
my $tests = 120;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/30_plv5240.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 127;
8+
my $tests = 128;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/31_plv52511.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 127;
8+
my $tests = 128;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/32_plv5261rc1.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 127;
8+
my $tests = 128;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/33_plv52711r.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 127;
8+
my $tests = 128;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

cpan/Config-Perl-V/t/34_plv5280.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
BEGIN {
77
use Test::More;
8-
my $tests = 127;
8+
my $tests = 128;
99
unless ($ENV{PERL_CORE}) {
1010
require Test::NoWarnings;
1111
Test::NoWarnings->import ();

pod/perldelta.pod

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,12 @@ XXX Remove this section if not applicable.
125125

126126
=item *
127127

128+
L<Config::Perl::V>. has been upgraded from version 0.30 to 0.31. This was due
129+
to a new configuration variable that has influence on binary compatibility:
130+
C<USE_THREAD_SAFE_LOCALE>.
131+
132+
=item *
133+
128134
L<threads::shared> has been upgraded from version 1.58 to 1.59.
129135

130136
=item *

0 commit comments

Comments
 (0)