From: jocuri%softhome.net <> Date: Fri, 26 Mar 2004 10:14:00 +0000 (+0000) Subject: Patch for bug 238693: replace depreciated v-strings with calls to the pack() function... X-Git-Tag: bugzilla-2.18rc1~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bc11c20a6d37811b878c9e5e296a35153c07198;p=thirdparty%2Fbugzilla.git Patch for bug 238693: replace depreciated v-strings with calls to the pack() function; patch by GavinS ; r=kiko; a=justdave. --- diff --git a/checksetup.pl b/checksetup.pl index 6d2c79189d..f2e14bf347 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -313,7 +313,7 @@ my $patchreader = have_vers("PatchReader",0); print "\n" unless $silent; if ($^O =~ /MSWin32/i) { - if ($^V lt v5.8.0) { + if ($^V lt pack('U*',5,8,0)) { print "The required ActivePerl modules are available at OpenInteract's ppm repository.\n"; print "You can add the repository with the following command:\n"; print " ppm rep add oi http://openinteract.sourceforge.net/ppmpackages/\n\n";