commit d4d1086311a6998ac681e2e76aaab3aa4c0e3470 from: Izzy Blacklock date: Tue Aug 08 16:01:41 2023 UTC Bigfix - add missing IO::Socket and IO::Select commit - 197f12698d130e56e8cbadb4f4302d35ab76dfae commit + d4d1086311a6998ac681e2e76aaab3aa4c0e3470 blob - 0ac98f7bfe06514105e10bfabae085e1ae5266db blob + 8f38a942c8bcdc6e0d6284a5c170fd6e22f82e2a --- lib/IRCNOW/IO/IRC.pm +++ lib/IRCNOW/IO/IRC.pm @@ -3,6 +3,9 @@ use strict; use warnings; use lib qw(./lib); use IRCNOW::IO qw(:DEBUG); + +use IO::Socket; +use IO::Select; use Exporter 'import'; @@ -510,6 +513,5 @@ sub run { } } - 1;