summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Config.pm.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Config.pm.orig')
-rw-r--r--Master/tlpkg/tlperl/lib/Config.pm.orig26
1 files changed, 13 insertions, 13 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm.orig b/Master/tlpkg/tlperl/lib/Config.pm.orig
index 1567edd640d..4e20854c990 100644
--- a/Master/tlpkg/tlperl/lib/Config.pm.orig
+++ b/Master/tlpkg/tlperl/lib/Config.pm.orig
@@ -3,14 +3,14 @@
# for a description of the variables, please have a look at the
# Glossary file, as written in the Porting folder, or use the url:
-# http://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary
+# https://github.com/Perl/perl5/blob/blead/Porting/Glossary
package Config;
use strict;
use warnings;
our ( %Config, $VERSION );
-$VERSION = "5.028001";
+$VERSION = "5.030001";
# Skip @Config::EXPORT because it only contains %Config, which we special
# case below as it's not a function. @Config::EXPORT won't change in the
@@ -56,11 +56,11 @@ sub import {
return;
}
-die "$0: Perl lib version (5.28.1) doesn't match executable '$^X' version ($])"
+die "$0: Perl lib version (5.30.1) doesn't match executable '$^X' version ($])"
unless $^V;
-$^V eq 5.28.1
- or die sprintf "%s: Perl lib version (5.28.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
+$^V eq 5.30.1
+ or die sprintf "%s: Perl lib version (5.30.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
sub FETCH {
@@ -84,7 +84,7 @@ sub AUTOLOAD {
# tie returns the object, so the value returned to require will be true.
tie %Config, 'Config', {
- archlibexp => 'c:\\tlperl\\lib',
+ archlibexp => 'd:\\tlperl\\lib',
archname => 'MSWin32-x86-multi-thread',
cc => 'gcc',
d_readlink => undef,
@@ -96,16 +96,16 @@ tie %Config, 'Config', {
inc_version_list => '',
intsize => '4',
ldlibpthname => '',
- libpth => 'X:\\wprogs\\mingw2019\\mingw32\\lib',
+ libpth => 'D:\\mingw2020\\lib',
osname => 'MSWin32',
- osvers => '6.1.7601',
+ osvers => '10.0.18363.418',
path_sep => ';',
- privlibexp => 'c:\\tlperl\\lib',
- scriptdir => 'c:\\tlperl\\bin',
- sitearchexp => 'c:\\tlperl\\site\\lib',
- sitelibexp => 'c:\\tlperl\\site\\lib',
+ privlibexp => 'd:\\tlperl\\lib',
+ scriptdir => 'd:\\tlperl\\bin',
+ sitearchexp => 'd:\\tlperl\\site\\lib',
+ sitelibexp => 'd:\\tlperl\\site\\lib',
so => 'dll',
useithreads => 'define',
usevendorprefix => undef,
- version => '5.28.1',
+ version => '5.30.1',
};