summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-07-25 15:18:27 +0200
committermkanat%bugzilla.org <>2006-07-25 15:18:27 +0200
commitf191286713b620120a0642b7d1757a0f762a4bd6 (patch)
treeddf8c477ad6079d698350918dc2fe8c845a0623b /checksetup.pl
parent01939a3d9ba7d3947e3637ef4a7808c4d841164e (diff)
downloadbugzilla-f191286713b620120a0642b7d1757a0f762a4bd6.tar.gz
bugzilla-f191286713b620120a0642b7d1757a0f762a4bd6.tar.xz
Bug 345389: Template-Toolkit 2.15 moved Template::Plugin::GD into a separate package
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 1de84e56d..bb6e46245 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -296,7 +296,9 @@ if (!$have_mod{'Image::Magick'} && !$silent) {
}
if ( (!$have_mod{'GD'} || !$have_mod{'GD::Graph'}
- || !$have_mod{'GD::Text::Align'}) && !$silent)
+ || !$have_mod{'GD::Text::Align'}
+ || !$have_mod{'Template::Plugin::GD::Image'})
+ && !$silent)
{
print "If you want to see graphical bug reports (bar, pie and line ";
print "charts of \ncurrent data), you should install libgd and the ";
@@ -306,6 +308,8 @@ if ( (!$have_mod{'GD'} || !$have_mod{'GD::Graph'}
if !$have_mod{'GD::Graph'};
print "GD::Text::Align: " . install_command("GD::Text::Align") . "\n"
if !$have_mod{'GD::Text::Align'};
+ print "Template::Plugin::GD: " . install_command('Template::Plugin::GD')
+ . "\n" if !$have_mod{'Template::Plugin::GD::Image'};
print "\n";
}
if (!$have_mod{'PatchReader'} && !$silent) {