From 7d58f2d749a7e975d6406114fcce05145a7fb1be Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Sun, 12 Jul 2020 18:51:53 -0400 Subject: [PATCH] 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 --- configure.ac | 1 + ddclient.in | 1 + 2 files changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 6151e88..821f842 100644 --- a/configure.ac +++ b/configure.ac @@ -40,6 +40,7 @@ m4_foreach_w([_m], [ File::Basename File::Path Getopt::Long + IO::Socket::INET Socket Sys::Hostname version=0.77 diff --git a/ddclient.in b/ddclient.in index 1cec317..aab4212 100755 --- a/ddclient.in +++ b/ddclient.in @@ -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;