Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 1d5e491

Browse files
committed
ExtUtils-MakeMaker-8.35_08: fix FULLPERL for win32 cperl
needed for Storable
1 parent 61f25bb commit 1d5e491

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

dist/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use ExtUtils::MakeMaker qw($Verbose neatvalue _sprintf562);
1414

1515
# If we make $VERSION an our variable parse_version() breaks
1616
use vars qw($VERSION);
17-
$VERSION = '8.35_07';
17+
$VERSION = '8.35_08';
1818
$VERSION =~ tr/_//d;
1919

2020
require ExtUtils::MM_Any;
@@ -2049,6 +2049,7 @@ sub init_PERL {
20492049
my $perl_name = 'perl';
20502050
$perl_name = 'ndbgperl' if $Is{VMS} &&
20512051
defined $Config{usevmsdebug} && $Config{usevmsdebug} eq 'define';
2052+
$perl_name = 'cperl' if $Is{Win32} && $^V =~ /c$/;
20522053

20532054
# XXX This logic is flawed. If "miniperl" is anywhere in the path
20542055
# it will get confused. It should be fixed to work only on the filename.

dist/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ our %macro_dep; # whether a macro is a dependency
2929
use constant SILENT => (defined $ENV{MAKEFLAGS}
3030
and $ENV{MAKEFLAGS} =~ /\b(s|silent|quiet)\b/) ? 1 : 0;
3131

32-
our $VERSION = '8.35_07';
32+
our $VERSION = '8.35_08';
3333
$VERSION =~ tr/_//d;
3434

3535
# Emulate something resembling CVS $Revision$

dist/Module-CoreList/lib/Module/CoreList.pm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18339,9 +18339,11 @@ our %delta :const = (
1833918339
'Module::CoreList' => '5.20190301c',
1834018340
'Module::CoreList::Utils'=> '5.20190301c',
1834118341
'Cpanel::JSON::XS' => '4.09',
18342-
'ExtUtils::MakeMaker' => '8.35_07',
18343-
'ExtUtils::MM_Unix' => '8.35_07',
18342+
'ExtUtils::MakeMaker' => '8.35_08',
18343+
'ExtUtils::MM_Unix' => '8.35_08',
1834418344
'Storable' => '3.12_04',
18345+
},
18346+
removed => {
1834518347
}
1834618348
}
1834718349
);

pod/perlcdelta.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ L<perl5262cdelta>, which describes differences between v5.26.1c and v5.26.2c.
1818

1919
=over 4
2020

21-
=item L<ExtUtils::MakeMaker> 8.35_07
21+
=item L<ExtUtils::MakeMaker> 8.35_08
2222

2323
Added C<-flto> support for static libs (need the lto plugin) and D for
2424
deterministic builds, using arflags for AR_STATIC_ARGS, not just 'cr'.

t/porting/customized.dat

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,12 @@ Encode cpan/Encode/t/Aliases.t 95bf948f5dbdd4f775904baf2111413b66a5944d
5656
ExtUtils::CBuilder dist/ExtUtils-CBuilder/t/00-have-compiler.t 9061ebec404019e812d03fa7227dd435d7a71046
5757
ExtUtils::CBuilder dist/ExtUtils-CBuilder/t/03-cplusplus.t 71a03fe898634486a5181ac32b6a98f03bb9a914
5858
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm a7ce3c6953c3f783dc99c967fb9a7dc32ac1edf7
59-
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm d464aea8ca0a7884421a6efd037d927f39892914
59+
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm ddeafedb70db9f6ab23118f1b360d5b3dfbc81c8
60+
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm ddf73d8e999a3747aad3446773a1de56761f86a0
6061
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/Mkbootstrap.pm 94141aecccee11d919c41312f1032dee2809793b
6162
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm 31f403a94633fbe1f52dfceb929805ffa3ca4c72
6263
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm 2475c92bef4c81275cbe2f1929a03539633b72fa
63-
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 42f37f91c7433aaa2b5e38d85dd4b7e63391bc44
64+
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 074a8c3e7aea1581883b7016f9c10210dcf534cc
6465
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/t/basic.t c4d0d921785b91b6d958c372c430f52223acf035
6566
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/NoXS.pm 371cdff1b2375017907cfbc9c8f4a31f5ad10582
6667
ExtUtils::MakeMaker dist/ExtUtils-MakeMaker/t/Liblist.t 9a3baf8a2c2281037f803b909d26e77a1bb099af

0 commit comments

Comments
 (0)