From 51a0d6e4d8b39286aa26b15ce6d24c455a6b755e Mon Sep 17 00:00:00 2001 From: acli Date: Sun, 26 Jan 2003 16:18:34 +0000 Subject: [PATCH] Bump minimum perl version to 5.6.1 (Bug 179) --- misc/Install.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/misc/Install.pm b/misc/Install.pm index 15d58a0a7b..00ed49a7c2 100644 --- a/misc/Install.pm +++ b/misc/Install.pm @@ -620,9 +620,8 @@ sub checkperlmodules { my $message = getmessage('CheckingPerlModules'); showmessage($message, 'none'); - # FIXME: Perl 5.6 is BUGGY!!! IT SHOULD NOT BE USED in production!!! - unless (eval "require 5.006_000") { - die getmessage('PerlVersionFailure', ['5.6.0']); + unless ($] >= 5.006001) { # Bug 179 + die getmessage('PerlVersionFailure', ['5.6.1']); } my @missing = (); -- 2.39.5