Subject: | Net::NTPTime version 1.00 bug, and a fix, for Windows XP, Perl 5.14.2 |
Date: | Wed, 10 Oct 2012 21:50:40 -0400 |
To: | bug-Net-NTPTime [...] rt.cpan.org |
From: | "m.nooning" <m.nooning [...] comcast.net> |
First, nice module.
I was getting the bug below on my Windows XP SP2, IBM Thinkpad.
Undefined subroutine &Net::NTPTime::inet_aton
To fix it, I needed to make the change from "require" to "use" as shown
below to the file NTPTime.pm.
package Net::NTPTime;
#require Socket;
use Socket;
No need to respond.
Thanks again for doing/maintaining the module.