diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/PerlIO')
-rw-r--r-- | Master/tlpkg/tlperl/lib/PerlIO/encoding.pm | 6 | ||||
-rw-r--r-- | Master/tlpkg/tlperl/lib/PerlIO/scalar.pm | 6 | ||||
-rw-r--r-- | Master/tlpkg/tlperl/lib/PerlIO/via.pm | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/Master/tlpkg/tlperl/lib/PerlIO/encoding.pm b/Master/tlpkg/tlperl/lib/PerlIO/encoding.pm index 4b446703229..f7f3f2e3127 100644 --- a/Master/tlpkg/tlperl/lib/PerlIO/encoding.pm +++ b/Master/tlpkg/tlperl/lib/PerlIO/encoding.pm @@ -1,7 +1,7 @@ package PerlIO::encoding; use strict; -our $VERSION = '0.12'; +our $VERSION = '0.14'; our $DEBUG = 0; $DEBUG and warn __PACKAGE__, " called by ", join(", ", caller), "\n"; @@ -10,8 +10,8 @@ $DEBUG and warn __PACKAGE__, " called by ", join(", ", caller), "\n"; # # use Encode (); -use XSLoader (); -XSLoader::load(__PACKAGE__, $VERSION); +require XSLoader; +XSLoader::load(); our $fallback = Encode::PERLQQ()|Encode::WARN_ON_ERR()|Encode::STOP_AT_PARTIAL(); diff --git a/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm b/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm index f9e4368d7e5..a6da9631cfb 100644 --- a/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm +++ b/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm @@ -1,7 +1,7 @@ package PerlIO::scalar; -our $VERSION = '0.08'; -use XSLoader (); -XSLoader::load 'PerlIO::scalar'; +our $VERSION = '0.11_01'; +require XSLoader; +XSLoader::load(); 1; __END__ diff --git a/Master/tlpkg/tlperl/lib/PerlIO/via.pm b/Master/tlpkg/tlperl/lib/PerlIO/via.pm index 077f0d17f90..2907762aa47 100644 --- a/Master/tlpkg/tlperl/lib/PerlIO/via.pm +++ b/Master/tlpkg/tlperl/lib/PerlIO/via.pm @@ -1,7 +1,7 @@ package PerlIO::via; -our $VERSION = '0.09'; -use XSLoader (); -XSLoader::load 'PerlIO::via'; +our $VERSION = '0.11'; +require XSLoader; +XSLoader::load(); 1; __END__ |