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.orig16
1 files changed, 9 insertions, 7 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm.orig b/Master/tlpkg/tlperl/lib/Config.pm.orig
index 599da3989ca..b002507bf86 100644
--- a/Master/tlpkg/tlperl/lib/Config.pm.orig
+++ b/Master/tlpkg/tlperl/lib/Config.pm.orig
@@ -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) . ")";
@@ -95,9 +97,9 @@ tie %Config, 'Config', {
inc_version_list => '',
intsize => '4',
ldlibpthname => '',
- libpth => 'X:\\MinGW\\lib',
+ libpth => 'x:\\strawberry\\c\\lib',
osname => 'MSWin32',
- osvers => '5.1',
+ osvers => '4.0',
path_sep => ';',
privlibexp => 'c:\\perl\\lib',
scriptdir => 'c:\\perl\\bin',
@@ -106,5 +108,5 @@ tie %Config, 'Config', {
so => 'dll',
useithreads => 'define',
usevendorprefix => undef,
- version => '5.16.2',
+ version => '5.18.2',
};