summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Config.pm.orig
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-04-05 22:27:26 +0000
committerKarl Berry <karl@freefriends.org>2016-04-05 22:27:26 +0000
commitb56b320b5e2515160073fa1b469514002688fe11 (patch)
tree965a7100c5e45fca8ec803d22b8b6ce14fca4633 /Master/tlpkg/tlperl/lib/Config.pm.orig
parentd26c206452d2e285c3bbf949f34011e4a55fd8f9 (diff)
tlperl 5.22.1 from siep
git-svn-id: svn://tug.org/texlive/trunk@40252 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Config.pm.orig')
-rw-r--r--Master/tlpkg/tlperl/lib/Config.pm.orig12
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm.orig b/Master/tlpkg/tlperl/lib/Config.pm.orig
index 69d13dfbea6..07a6b3eff09 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.020002";
+$VERSION = "5.022001";
# 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.20.2) doesn't match executable '$^X' version ($])"
+die "$0: Perl lib version (5.22.1) doesn't match executable '$^X' version ($])"
unless $^V;
-$^V eq 5.20.2
- or die sprintf "%s: Perl lib version (5.20.2) doesn't match executable '$^X' version (%vd)", $0, $^V;
+$^V eq 5.22.1
+ or die sprintf "%s: Perl lib version (5.22.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
sub FETCH {
@@ -98,7 +98,7 @@ tie %Config, 'Config', {
ldlibpthname => '',
libpth => 'X:\\mingw\\lib',
osname => 'MSWin32',
- osvers => '4.0',
+ osvers => '6.1',
path_sep => ';',
privlibexp => 'c:\\tlperl\\lib',
scriptdir => 'c:\\tlperl\\bin',
@@ -107,5 +107,5 @@ tie %Config, 'Config', {
so => 'dll',
useithreads => 'define',
usevendorprefix => undef,
- version => '5.20.2',
+ version => '5.22.1',
};