diff options
author | mkanat%bugzilla.org <> | 2006-07-25 13:18:27 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-07-25 13:18:27 +0000 |
commit | f191286713b620120a0642b7d1757a0f762a4bd6 (patch) | |
tree | ddf8c477ad6079d698350918dc2fe8c845a0623b /checksetup.pl | |
parent | Bug 345652: request.cgi should look at flags.modification_date instead of fla... (diff) | |
download | bugzilla-f191286713b620120a0642b7d1757a0f762a4bd6.tar.gz bugzilla-f191286713b620120a0642b7d1757a0f762a4bd6.tar.bz2 bugzilla-f191286713b620120a0642b7d1757a0f762a4bd6.zip |
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-x | checksetup.pl | 6 |
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) { |