Commit 28875a18 authored by dave%intrec.com's avatar dave%intrec.com

Fix for bug 69670: Chart::Base only reports its version number as 0.99,…

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.
parent 9fefac12
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment