Provides a whole heap 'o network functionality for Perl. Requires a Perl compiled with socket support.
Requires the following patch to compile properly. This is the patch:
*** makefile.pl;1
--- makefile.pl;2
**************
*** 78,85
last if ($config_pm = $_) =~ s/^IO(.)File/Net${1}Config/;
}
! system($^X, 'Configure')
! unless -f $config_pm;
#--- Write the Makefile
--- 78,91 -----
last if ($config_pm = $_) =~ s/^IO(.)File/Net${1}Config/;
}
! unless (-f $config_pm) {
! if ($^O eq 'VMS') {
! system("mcr $^X Configure.")
! }
! else {
! system($^X, "Configure")
! }
! }
#--- Write the Makefile
Last Update 12-September-1997
Questions or Comments?
Write the WebMaster