diff options
author | Norbert Preining <preining@logic.at> | 2008-01-06 17:27:49 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-01-06 17:27:49 +0000 |
commit | b6d71a48c3eb427a60bc1c9b4b8e3f16b695bf66 (patch) | |
tree | 374beef8c61dd2f05dc36686cd5f63c393ca1f9c /Master/perltl/lib/IO.pm | |
parent | 7112ae868388a986572aec9c821f1971b2156351 (diff) |
big perl removal, all the bin-perl related stuff is gone:
- Master/perltl the perl library
- bin/win32/perl,tk the bin/dll
- the bin-perl.tlpsrc
- collection-perl.tlpsrc (where did this come from)
- collection-perl removed from collection-wintools
git-svn-id: svn://tug.org/texlive/trunk@6062 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/perltl/lib/IO.pm')
-rw-r--r-- | Master/perltl/lib/IO.pm | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/Master/perltl/lib/IO.pm b/Master/perltl/lib/IO.pm deleted file mode 100644 index 0087530c7e6..00000000000 --- a/Master/perltl/lib/IO.pm +++ /dev/null @@ -1,47 +0,0 @@ -# - -package IO; - -use XSLoader (); -use Carp; - -$VERSION = "1.20"; -XSLoader::load 'IO', $VERSION; - -sub import { - shift; - my @l = @_ ? @_ : qw(Handle Seekable File Pipe Socket Dir); - - eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l) - or croak $@; -} - -1; - -__END__ - -=head1 NAME - -IO - load various IO modules - -=head1 SYNOPSIS - - use IO; - -=head1 DESCRIPTION - -C<IO> provides a simple mechanism to load some of the IO modules at one go. -Currently this includes: - - IO::Handle - IO::Seekable - IO::File - IO::Pipe - IO::Socket - IO::Dir - -For more information on any of these modules, please see its respective -documentation. - -=cut - |