summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authormyk%mozilla.org <>2005-07-30 09:46:39 +0200
committermyk%mozilla.org <>2005-07-30 09:46:39 +0200
commitd79c2c86ef0b69c4250642e3709f22a34fe7c8a0 (patch)
treed62dc2bd3405c4bda8ec94a65f9e29d2eabd8969 /checksetup.pl
parentf55027e7a07f4cb3f74cd6c42e710e794564df3c (diff)
downloadbugzilla-d79c2c86ef0b69c4250642e3709f22a34fe7c8a0.tar.gz
bugzilla-d79c2c86ef0b69c4250642e3709f22a34fe7c8a0.tar.xz
Fix for bug 302083: automatically converts BMP files to PNG files to conserve disk space; patch by Greg Hendricks; r=myk, a=myk
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 7e5152628..f3a332870 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -368,6 +368,7 @@ my $xmlparser = have_vers("XML::Parser",0);
my $gdgraph = have_vers("GD::Graph",0);
my $gdtextalign = have_vers("GD::Text::Align",0);
my $patchreader = have_vers("PatchReader","0.9.4");
+my $imagemagick = have_vers("Image::Magick",0);
print "\n" unless $silent;
@@ -392,6 +393,14 @@ if (!$xmlparser && !$silent) {
"the XML::Parser module by running (as $::root):\n\n",
" " . install_command("XML::Parser") . "\n\n";
}
+if (!$imagemagick && !$silent) {
+ print "If you want to convert BMP image attachments to PNG to conserve\n",
+ "disk space, you will need to install the ImageMagick application\n ",
+ "Available from http://www.imagemagick.org, and the Image::Magick",
+ "Perl module by running (as $::root):\n\n",
+ " " . install_command("Image::Magick") . "\n\n";
+
+}
if ((!$gd || !$gdgraph || !$gdtextalign) && !$silent) {
print "If you you want to see graphical bug reports (bar, pie and line ";
print "charts of \ncurrent data), you should install libgd and the ";