From d54f95770344279e0fa76fa37524bc7dba42b244 Mon Sep 17 00:00:00 2001 From: "Heiko Schlittermann (HS12-RIPE)" Date: Sat, 5 Nov 2016 00:57:23 +0100 Subject: [PATCH] Testsuite: use @ISA instead of 'parent' Use parent is available on Perl >= 5.10.1, some old CentOS do not have it. --- test/lib/Exim/Runtest.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm index bdf9c60d6..32537f543 100644 --- a/test/lib/Exim/Runtest.pm +++ b/test/lib/Exim/Runtest.pm @@ -7,7 +7,9 @@ use IO::Socket::INET; use Cwd; use Carp; -use parent 'Exporter'; +use Exporter; +our @ISA = qw(Exporter); + our @EXPORT_OK = qw(mailgroup dynamic_socket exim_binary flavour flavours); our %EXPORT_TAGS = ( all => \@EXPORT_OK, -- 2.30.2