summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg/tlperl/lib/Config.pm.orig
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-04-11 03:09:12 +0000
committerNorbert Preining <norbert@preining.info>2020-04-11 03:09:12 +0000
commitc2697fc286a1e2c94fd9968b76be6f4a6d2114cd (patch)
tree1dc2cfb07cb032740483dd8be7c74aff66b70352 /systems/texlive/tlnet/tlpkg/tlperl/lib/Config.pm.orig
parent25111608e6aa05042b0c6f83009262e1973d7a45 (diff)
CTAN sync 202004110309
Diffstat (limited to 'systems/texlive/tlnet/tlpkg/tlperl/lib/Config.pm.orig')
-rw-r--r--systems/texlive/tlnet/tlpkg/tlperl/lib/Config.pm.orig26
1 files changed, 13 insertions, 13 deletions
diff --git a/systems/texlive/tlnet/tlpkg/tlperl/lib/Config.pm.orig b/systems/texlive/tlnet/tlpkg/tlperl/lib/Config.pm.orig
index 1567edd640..4e20854c99 100644
--- a/systems/texlive/tlnet/tlpkg/tlperl/lib/Config.pm.orig
+++ b/systems/texlive/tlnet/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',
};