diff options
author | Karl Berry <karl@freefriends.org> | 2019-03-10 21:56:14 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-03-10 21:56:14 +0000 |
commit | e0a2a718e89f9700d627f1e6a8eea8f21d2fbeb8 (patch) | |
tree | 39972f65008b0d70f306a5f976494d29411bc41e /Master/tlpkg/tlperl/lib/Config.pm.orig | |
parent | b206fdc77d81ed1600949062f08de5690a4bf66f (diff) |
tl19 perl 5.28.1 for Windows, from Siep
git-svn-id: svn://tug.org/texlive/trunk@50322 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Config.pm.orig')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Config.pm.orig | 26 |
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 71bbb5d5192..1567edd640d 100644 --- a/Master/tlpkg/tlperl/lib/Config.pm.orig +++ b/Master/tlpkg/tlperl/lib/Config.pm.orig @@ -8,9 +8,9 @@ package Config;
use strict;
use warnings;
-use vars '%Config', '$VERSION';
+our ( %Config, $VERSION );
-$VERSION = "5.026001";
+$VERSION = "5.028001";
# 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.26.1) doesn't match executable '$^X' version ($])"
+die "$0: Perl lib version (5.28.1) doesn't match executable '$^X' version ($])"
unless $^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;
+$^V eq 5.28.1
+ or die sprintf "%s: Perl lib version (5.28.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:\\tlperl526\\lib',
+ archlibexp => 'c:\\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 => '\\\\VBOXSVR\\mingw32\\lib',
+ libpth => 'X:\\wprogs\\mingw2019\\mingw32\\lib',
osname => 'MSWin32',
- osvers => '10.0',
+ osvers => '6.1.7601',
path_sep => ';',
- privlibexp => 'c:\\tlperl526\\lib',
- scriptdir => 'c:\\tlperl526\\bin',
- sitearchexp => 'c:\\tlperl526\\site\\lib',
- sitelibexp => 'c:\\tlperl526\\site\\lib',
+ privlibexp => 'c:\\tlperl\\lib',
+ scriptdir => 'c:\\tlperl\\bin',
+ sitearchexp => 'c:\\tlperl\\site\\lib',
+ sitelibexp => 'c:\\tlperl\\site\\lib',
so => 'dll',
useithreads => 'define',
usevendorprefix => undef,
- version => '5.26.1',
+ version => '5.28.1',
};
|