summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/IO/Socket.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/IO/Socket.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/IO/Socket.pm9
1 files changed, 4 insertions, 5 deletions
diff --git a/Master/tlpkg/tlperl/lib/IO/Socket.pm b/Master/tlpkg/tlperl/lib/IO/Socket.pm
index c78aeecc1a0..bea16ec6e40 100644
--- a/Master/tlpkg/tlperl/lib/IO/Socket.pm
+++ b/Master/tlpkg/tlperl/lib/IO/Socket.pm
@@ -7,13 +7,12 @@
package IO::Socket;
-require 5.006;
+use 5.008_001;
use IO::Handle;
use Socket 1.3;
use Carp;
use strict;
-our(@ISA, $VERSION, @EXPORT_OK);
use Exporter;
use Errno;
@@ -22,11 +21,11 @@ use Errno;
require IO::Socket::INET;
require IO::Socket::UNIX if ($^O ne 'epoc' && $^O ne 'symbian');
-@ISA = qw(IO::Handle);
+our @ISA = qw(IO::Handle);
-$VERSION = "1.38";
+our $VERSION = "1.39";
-@EXPORT_OK = qw(sockatmark);
+our @EXPORT_OK = qw(sockatmark);
sub import {
my $pkg = shift;