summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-01-11 08:53:07 +0100
committerlpsolit%gmail.com <>2006-01-11 08:53:07 +0100
commit91cc642ea473afe0aba6c8dbdc4c550255ca5e03 (patch)
treee3b1121c1462b05ab25f4d4d707b4405381730ac /checksetup.pl
parentd2a0eafd3082e560c1a635c9e59ec0ebfed18a7e (diff)
downloadbugzilla-91cc642ea473afe0aba6c8dbdc4c550255ca5e03.tar.gz
bugzilla-91cc642ea473afe0aba6c8dbdc4c550255ca5e03.tar.xz
Bug 285614: Rewrite importxml.pl to remove XML::Parser magic numbers - Patch by Greg Hendricks <ghendricks@novell.com> r=LpSolit a=myk
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 56db99b46..847ada5bb 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -379,7 +379,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","1.0");
-my $xmlparser = have_vers("XML::Parser",0);
+my $xmlparser = have_vers("XML::Twig",0);
my $gdgraph = have_vers("GD::Graph",0);
my $gdtextalign = have_vers("GD::Text::Align",0);
my $patchreader = have_vers("PatchReader","0.9.4");
@@ -405,8 +405,8 @@ if ((!$gd || !$chartbase) && !$silent) {
if (!$xmlparser && !$silent) {
print "If you want to use the bug import/export feature to move bugs to\n",
"or from other bugzilla installations, you will need to install\n ",
- "the XML::Parser module by running (as $::root):\n\n",
- " " . install_command("XML::Parser") . "\n\n";
+ "the XML::Twig module by running (as $::root):\n\n",
+ " " . install_command("XML::Twig") . "\n\n";
}
if (!$imagemagick && !$silent) {
print "If you want to convert BMP image attachments to PNG to conserve\n",