summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Config.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-04-23 21:46:20 +0000
committerKarl Berry <karl@freefriends.org>2014-04-23 21:46:20 +0000
commit300c1eb6d37d46078d448d6d58938d5a80cd68ff (patch)
tree23a0a8b9f8f5460b405119c4d3c163d2d488ca5e /Master/tlpkg/tlperl/lib/Config.pm
parented55d86b7c5e18f6eccce80a1fb1423ca40a23b5 (diff)
(tl)perl 5.18.2 for windows from siep
git-svn-id: svn://tug.org/texlive/trunk@33648 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Config.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Config.pm16
1 files changed, 9 insertions, 7 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm b/Master/tlpkg/tlperl/lib/Config.pm
index 2000dffc07e..f2c5d76bdef 100644
--- a/Master/tlpkg/tlperl/lib/Config.pm
+++ b/Master/tlpkg/tlperl/lib/Config.pm
@@ -8,7 +8,9 @@
package Config;
use strict;
use warnings;
-use vars '%Config';
+use vars '%Config', '$VERSION';
+
+$VERSION = "5.018002";
# 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
@@ -54,11 +56,11 @@ sub import {
return;
}
-die "Perl lib version (5.16.2) doesn't match executable '$0' version ($])"
+die "Perl lib version (5.18.2) doesn't match executable '$0' version ($])"
unless $^V;
-$^V eq 5.16.2
- or die "Perl lib version (5.16.2) doesn't match executable '$0' version (" .
+$^V eq 5.18.2
+ or die "Perl lib version (5.18.2) doesn't match executable '$0' version (" .
sprintf("v%vd",$^V) . ")";
@@ -100,9 +102,9 @@ tie %Config, 'Config', {
inc_version_list => '',
intsize => '4',
ldlibpthname => '',
- libpth => "$mingdir\\lib",
+ libpth => 'x:\\mingw\\lib',
osname => 'MSWin32',
- osvers => '5.1',
+ osvers => '4.0',
path_sep => ';',
privlibexp => "$rootdir\\lib",
scriptdir => "$rootdir\\bin",
@@ -111,5 +113,5 @@ tie %Config, 'Config', {
so => 'dll',
useithreads => 'define',
usevendorprefix => undef,
- version => '5.16.2',
+ version => '5.18.2',
};