diff options
author | Craig A. Berry <craigberry@mac.com> | 2011-09-03 14:44:11 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2011-09-03 15:58:07 -0500 |
commit | 046cc26cf77f76bc63fd4d206fef560054f5d298 (patch) | |
tree | 97ff2b407e3588779aac22a5fd710d5e5d6704be /ext/Socket/Socket.pm | |
parent | c475d5dcffe516f06f78424f9515dc90cebe2577 (diff) | |
download | perl-046cc26cf77f76bc63fd4d206fef560054f5d298.tar.gz |
Remove sockadapt layer from the VMS build.
SOCKETSHR is/was an interface to abstract out TCP/IP calls for the
various vendors' networking implementations, including the freeware
CMU-IP stack. Neither SOCKETSHR nor CMU-IP has seen any maintenance
for over a decade and are likely not even C89-compliant. The CRTL
socket routines have been supported by the different vendors' stacks
for many years so there is no reason to maintain an alternative, and
there probably hasn't been a real working alternative for some years
anyway.
The code is still there in maint-5.14 and earlier branches if
anyone has need of it.
Diffstat (limited to 'ext/Socket/Socket.pm')
-rw-r--r-- | ext/Socket/Socket.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Socket/Socket.pm b/ext/Socket/Socket.pm index aa3fe3fff8..9ba10bfb82 100644 --- a/ext/Socket/Socket.pm +++ b/ext/Socket/Socket.pm @@ -3,7 +3,7 @@ package Socket; use strict; our($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); -$VERSION = "1.94"; +$VERSION = "1.94_01"; =head1 NAME |