aboutsummaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authordave%intrec.com <>2001-02-26 16:19:50 +0000
committerdave%intrec.com <>2001-02-26 16:19:50 +0000
commit28875a1899e901fb30f51abc5e34a41eb9d92805 (patch)
tree6d562dba3cf7d60419ee4404bf9a8675543e20ae /checksetup.pl
parent9fefac12fc5c13b42640963af384c9eb657ae4d3 (diff)
downloadbugs-28875a1899e901fb30f51abc5e34a41eb9d92805.tar
bugs-28875a1899e901fb30f51abc5e34a41eb9d92805.tar.gz
bugs-28875a1899e901fb30f51abc5e34a41eb9d92805.tar.bz2
bugs-28875a1899e901fb30f51abc5e34a41eb9d92805.tar.xz
bugs-28875a1899e901fb30f51abc5e34a41eb9d92805.zip
Fix for bug 69670: Chart::Base only reports its version number as 0.99, regardless of the fact that you have 0.99b or 0.99c installed. So checksetup.pl needs to look for 0.99 instead of 0.99b.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 11993e525..52b012387 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -217,7 +217,7 @@ unless (have_vers("Date::Parse",0)) { # 0 = any version
print "The following two modules are optional:\n";
my $charts = 0;
$charts++ if have_vers("GD","1.19");
-$charts++ if have_vers("Chart::Base","0.99b");
+$charts++ if have_vers("Chart::Base","0.99");
if ($charts != 2) {
print "If you you want to see graphical bug dependency charts, you may install\n",
"the optional libgd and the Perl modules GD-1.19 and Chart::Base-0.99b, e.g. by\n",