Merge pull request #248 from rhansen/imports

This commit is contained in:
Sandro 2020-07-08 12:11:11 +02:00 committed by GitHub
commit 593206ad7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -39,6 +39,9 @@ AC_SUBST([PERL])
m4_foreach_w([_m], [ m4_foreach_w([_m], [
File::Basename File::Basename
File::Path File::Path
Getopt::Long
Socket
Sys::Hostname
version=0.77 version=0.77
], [AX_PROG_PERL_MODULES([_m], [], ], [AX_PROG_PERL_MODULES([_m], [],
[AC_MSG_ERROR([missing required Perl module _m])])]) [AC_MSG_ERROR([missing required Perl module _m])])])

View file

@ -25,8 +25,8 @@ use warnings;
use File::Basename; use File::Basename;
use File::Path qw(make_path); use File::Path qw(make_path);
use Getopt::Long; use Getopt::Long;
use Socket qw(AF_INET AF_INET6 PF_INET PF_INET6);
use Sys::Hostname; use Sys::Hostname;
use IO::Socket;
use version 0.77; our $VERSION = version->declare('v3.9.1'); use version 0.77; our $VERSION = version->declare('v3.9.1');
(my $version = $VERSION->stringify()) =~ s/^v//; (my $version = $VERSION->stringify()) =~ s/^v//;