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.orig24
1 files changed, 12 insertions, 12 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm.orig b/Master/tlpkg/tlperl/lib/Config.pm.orig
index be4cd2c56a8..71bbb5d5192 100644
--- a/Master/tlpkg/tlperl/lib/Config.pm.orig
+++ b/Master/tlpkg/tlperl/lib/Config.pm.orig
@@ -10,7 +10,7 @@ use strict;
use warnings;
use vars '%Config', '$VERSION';
-$VERSION = "5.024001";
+$VERSION = "5.026001";
# 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.24.1) doesn't match executable '$^X' version ($])"
+die "$0: Perl lib version (5.26.1) doesn't match executable '$^X' version ($])"
unless $^V;
-$^V eq 5.24.1
- or die sprintf "%s: Perl lib version (5.24.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
+$^V eq 5.26.1
+ or die sprintf "%s: Perl lib version (5.26.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 => 'c:\\tlperl526\\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\\mingw\\lib',
+ libpth => '\\\\VBOXSVR\\mingw32\\lib',
osname => 'MSWin32',
- osvers => '6.1',
+ osvers => '10.0',
path_sep => ';',
- privlibexp => 'c:\\tlperl\\lib',
- scriptdir => 'c:\\tlperl\\bin',
- sitearchexp => 'c:\\tlperl\\site\\lib',
- sitelibexp => 'c:\\tlperl\\site\\lib',
+ privlibexp => 'c:\\tlperl526\\lib',
+ scriptdir => 'c:\\tlperl526\\bin',
+ sitearchexp => 'c:\\tlperl526\\site\\lib',
+ sitelibexp => 'c:\\tlperl526\\site\\lib',
so => 'dll',
useithreads => 'define',
usevendorprefix => undef,
- version => '5.24.1',
+ version => '5.26.1',
};