Import IO::Socket::INET
We've always required IO::Socket::INET but never explicitly included it. For some reason that hasn't been a problem until now. Fixes #255
This commit is contained in:
parent
7a21c1646c
commit
7d58f2d749
2 changed files with 2 additions and 0 deletions
|
@ -40,6 +40,7 @@ m4_foreach_w([_m], [
|
|||
File::Basename
|
||||
File::Path
|
||||
Getopt::Long
|
||||
IO::Socket::INET
|
||||
Socket
|
||||
Sys::Hostname
|
||||
version=0.77
|
||||
|
|
|
@ -25,6 +25,7 @@ use warnings;
|
|||
use File::Basename;
|
||||
use File::Path qw(make_path);
|
||||
use Getopt::Long;
|
||||
use IO::Socket::INET;
|
||||
use Socket qw(AF_INET AF_INET6 PF_INET PF_INET6);
|
||||
use Sys::Hostname;
|
||||
|
||||
|
|
Loading…
Reference in a new issue