Restore perl 5.8.8 support

This is as variant of the patch I had in EL5 for a while, but forgot to upstream.
It turns out that the changes we made to support 5.10.1 are actually sufficient
for 5.8.8 if we remove unused imports, so remove them.
This commit is contained in:
Alexander Chernyakhovsky
2017-03-26 17:16:37 -04:00
parent fafcdc27c5
commit 5ee542c26c
+2 -2
View File
@@ -30,14 +30,14 @@
# this exception statement from all source files in the program, then
# also delete it here.
use 5.10.0;
use 5.8.8;
use warnings;
use strict;
use Getopt::Long;
use IO::Socket;
use Text::ParseWords;
use Socket qw( IPPROTO_IP IPPROTO_IPV6 IPPROTO_TCP IPPROTO_UDP );
use Socket qw(IPPROTO_TCP);
use Errno qw(EINTR);
use POSIX qw(_exit);