diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2021-03-03 11:04:20 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2021-03-03 11:04:20 +0000 |
commit | 13c3572d26e0868b9665513e4646ade860ae7810 (patch) | |
tree | 72f68d7c1270cc0a1d504f8eeb45d4de6b36f2d1 /Master/tlpkg/tlperl/lib/Config.pm | |
parent | 87d16a01498a53c4bb455d78ae7131370e47591e (diff) |
Updated tlperl
git-svn-id: svn://tug.org/texlive/trunk@58075 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Config.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Config.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm b/Master/tlpkg/tlperl/lib/Config.pm index 950895317c0..14a86e30389 100644 --- a/Master/tlpkg/tlperl/lib/Config.pm +++ b/Master/tlpkg/tlperl/lib/Config.pm @@ -10,7 +10,7 @@ use strict; use warnings; our ( %Config, $VERSION ); -$VERSION = "5.030001"; +$VERSION = "5.032001"; # 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.30.1) doesn't match executable '$^X' version ($])" +die "$0: Perl lib version (5.32.1) doesn't match executable '$^X' version ($])" unless $^V; -$^V eq 5.30.1 - or die sprintf "%s: Perl lib version (5.30.1) doesn't match executable '$^X' version (%vd)", $0, $^V; +$^V eq 5.32.1 + or die sprintf "%s: Perl lib version (5.32.1) doesn't match executable '$^X' version (%vd)", $0, $^V; sub FETCH { @@ -85,7 +85,7 @@ sub AUTOLOAD { my $rootdir = __FILE__; $rootdir =~ s![\\/][^\\/]*[\\/][^\\/]*$!!; $rootdir =~ s!/!\\!g; -my $mingdir = "D:\\mingw2020"; +my $mingdir = "E:\\wprogs\\mingw2021"; # tie returns the object, so the value returned to require will be true. tie %Config, 'Config', { @@ -103,7 +103,7 @@ tie %Config, 'Config', { ldlibpthname => '', libpth => "$mingdir\\lib", osname => 'MSWin32', - osvers => '10.0.18363.418', + osvers => '10.0.19042.804', path_sep => ';', privlibexp => "$rootdir\\lib", scriptdir => "$rootdir\\bin", @@ -112,5 +112,5 @@ tie %Config, 'Config', { so => 'dll', useithreads => 'define', usevendorprefix => undef, - version => '5.30.1', + version => '5.32.1', }; |