summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorkiko%async.com.br <>2004-07-10 23:22:07 +0200
committerkiko%async.com.br <>2004-07-10 23:22:07 +0200
commit7c10ffc9689cd842eb14ea9a636a9616795fe174 (patch)
tree112000d95f7d4821031b437d1c72a2707ccfdea1 /checksetup.pl
parentef8add9f5f464c737d2cf85d8638947abbf535bd (diff)
downloadbugzilla-7c10ffc9689cd842eb14ea9a636a9616795fe174.tar.gz
bugzilla-7c10ffc9689cd842eb14ea9a636a9616795fe174.tar.xz
Fix for bug 250754: Require Chart::Base 1.0. Push up the requirement a
single notch to avoid GIF-requirements in GD and 0.99 `confusioning'. r,a=justdave
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 2ccf0d8a4..51a1bb2f4 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -305,7 +305,7 @@ foreach my $module (@{$modules}) {
print "\nThe following Perl modules are optional:\n" unless $silent;
my $gd = have_vers("GD","1.20");
-my $chartbase = have_vers("Chart::Base","0.99");
+my $chartbase = have_vers("Chart::Base","1.0");
my $xmlparser = have_vers("XML::Parser",0);
my $gdgraph = have_vers("GD::Graph",0);
my $gdtextalign = have_vers("GD::Text::Align",0);
@@ -340,7 +340,7 @@ if ((!$gd || !$chartbase) && !$silent) {
print "If you you want to see graphical bug charts (plotting historical ";
print "data over \ntime), you should install libgd and the following Perl "; print "modules:\n\n";
print "GD: " . install_command("GD") ."\n" if !$gd;
- print "Chart 0.99b: " . install_command("Chart::Base") . "\n" if !$chartbase;
+ print "Chart: " . install_command("Chart::Base") . "\n" if !$chartbase;
print "\n";
}
if (!$xmlparser && !$silent) {