From 91cc642ea473afe0aba6c8dbdc4c550255ca5e03 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 11 Jan 2006 07:53:07 +0000 Subject: Bug 285614: Rewrite importxml.pl to remove XML::Parser magic numbers - Patch by Greg Hendricks r=LpSolit a=myk --- checksetup.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'checksetup.pl') 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", -- cgit v1.2.3-24-g4f1b