[Rt-commit] [svn] r735 - in rt/trunk: . sbin

jesse at pallas.eruditorum.org jesse at pallas.eruditorum.org
Fri Apr 23 17:39:10 EDT 2004


Author: jesse
Date: Fri Apr 23 17:39:10 2004
New Revision: 735

Modified:
   rt/trunk/   (props changed)
   rt/trunk/sbin/rt-test-dependencies.in
Log:
 ----------------------------------------------------------------------
 r2148 at tinbook:  jesse | 2004-04-23T21:38:44.150971Z
 
 RT requires perl 5.8.3 to work correctly. Testdeps should check this
 ----------------------------------------------------------------------
 

Modified: rt/trunk/sbin/rt-test-dependencies.in
==============================================================================
--- rt/trunk/sbin/rt-test-dependencies.in	(original)
+++ rt/trunk/sbin/rt-test-dependencies.in	Fri Apr 23 17:39:10 2004
@@ -191,16 +191,19 @@
 .
 
 print "perl:\n";
-print "\t5.8.0";
-eval {require 5.008};
+print "\t5.8.3";
+eval {require 5.008003};
 if ($@) {
-print "...missing.\n";
-        eval {require 5.006001};
+print "...MISSING.\n";
+        eval {require 5.008000};
         if ($@) {
-            print " RT is known to be non-functional on versions of perl older than 5.6.1. Please upgrade to 5.8.0 or newer";
+            print "\nRT is known to be non-functional on versions of perl older than 5.8.3.\nPlease upgrade to 5.8.3 or newer\n\n";
             die;
-        } else {
-            print " RT is not supported on perl 5.6.1\n";
+        } 
+
+        eval {require 5.008003};
+        if ($@) {
+            print "\nRT is known to be non-functional on versions of perl older than 5.8.3.\nPlease upgrade to 5.8.3 or newer\n\n";
         }
 } else {
         print "...found\n";


More information about the Rt-commit mailing list