diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/PerlIO/encoding.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/PerlIO/encoding.pm | 6 |
1 files changed, 3 insertions, 3 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(); |