diff options
author | Karl Berry <karl@freefriends.org> | 2020-03-07 22:52:33 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-03-07 22:52:33 +0000 |
commit | 11c6e5fc65f26ba5219997d19707b998a9abf26d (patch) | |
tree | a1dc8073a679611d3f09c01eda006cc3f6f846b1 /Master/tlpkg/tlperl/lib/threads | |
parent | a6593bd4f2eb12ae25540de026f7f9ebcf230a2f (diff) |
tl20 perl 5.30.1 for Windows, from Siep
git-svn-id: svn://tug.org/texlive/trunk@54166 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/threads')
-rw-r--r-- | Master/tlpkg/tlperl/lib/threads/shared.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/lib/threads/shared.pm b/Master/tlpkg/tlperl/lib/threads/shared.pm index b9ba66e85b7..45ad1549791 100644 --- a/Master/tlpkg/tlperl/lib/threads/shared.pm +++ b/Master/tlpkg/tlperl/lib/threads/shared.pm @@ -4,10 +4,11 @@ use 5.008; use strict; use warnings; +use Config; use Scalar::Util qw(reftype refaddr blessed); -our $VERSION = '1.58'; # Please update the pod, too. +our $VERSION = '1.60'; # Please update the pod, too. my $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -18,7 +19,7 @@ $threads::shared::threads_shared = 1; $threads::shared::clone_warn = undef; # Load the XS code, if applicable -if ($threads::threads) { +if ($Config::Config{'useithreads'} && $threads::threads) { require XSLoader; XSLoader::load('threads::shared', $XS_VERSION); @@ -195,7 +196,7 @@ threads::shared - Perl extension for sharing data structures between threads =head1 VERSION -This document describes threads::shared version 1.58 +This document describes threads::shared version 1.60 =head1 SYNOPSIS |