From: bbaetz%student.usyd.edu.au <> Date: Thu, 17 Oct 2002 19:49:44 +0000 (+0000) Subject: Bug 173495 - require perl 5.6 X-Git-Tag: bugzilla-2.17.1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ea5883a2eed24f57f1d161d5f58f147f2e692ea;p=thirdparty%2Fbugzilla.git Bug 173495 - require perl 5.6 --- diff --git a/checksetup.pl b/checksetup.pl index 5f7ca5326c..9f22ae1f5d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -132,8 +132,8 @@ if ($ARGV[0]) { # print "\nChecking perl modules ...\n" unless $silent; -unless (eval "require 5.005") { - die "Sorry, you need at least Perl 5.005\n"; +unless ($] >= 5.006) { + die "Sorry, you need at least Perl 5.6\n"; } # vers_cmp is adapted from Sort::Versions 1.3 1996/07/11 13:37:00 kjahds,