Commit 91cc642e authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 285614: Rewrite importxml.pl to remove XML::Parser magic numbers - Patch by…

Bug 285614: Rewrite importxml.pl to remove XML::Parser magic numbers - Patch by Greg Hendricks <ghendricks@novell.com> r=LpSolit a=myk
parent d2a0eafd
......@@ -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",
......
......@@ -30,7 +30,7 @@ use File::Find;
#
@additional_files = ();
%exclude_deps = (
'XML::Parser' => ['importxml.pl'],
'XML::Twig' => ['importxml.pl'],
'Net::LDAP' => ['Bugzilla/Auth/Verify/LDAP.pm'],
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment