diff options
author | bugreport%peshkin.net <> | 2005-08-10 04:19:43 +0000 |
---|---|---|
committer | bugreport%peshkin.net <> | 2005-08-10 04:19:43 +0000 |
commit | 67b67a2e824b5120c3d8d06948927b5372ea98a6 (patch) | |
tree | 37820820865c7cc4c9dc991f5432f7f32910fd1c | |
parent | Back out bug 300231, because it triggers bug 303413. (diff) | |
download | bugzilla-67b67a2e824b5120c3d8d06948927b5372ea98a6.tar.gz bugzilla-67b67a2e824b5120c3d8d06948927b5372ea98a6.tar.bz2 bugzilla-67b67a2e824b5120c3d8d06948927b5372ea98a6.zip |
Bug 303482: Change checksetup.pl to check for MIME::Parser instead of MIME::Tools
Patch by Joel Peshkin <bugreport@peshkin.net>
r=glob,wurblzap a=justdave
-rwxr-xr-x | checksetup.pl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/checksetup.pl b/checksetup.pl index f8385449e..ef659b732 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -324,8 +324,8 @@ my $modules = [ version => $^O =~ /MSWin32/i ? '3.01' : '3.03' }, { - name => 'MIME::Tools', - version => '5.417' + name => 'MIME::Parser', + version => '5.406' }, { name => 'Storable', @@ -347,7 +347,8 @@ my %ppm_modules = ( 'GD::Graph' => 'GDGraph', 'GD::Text::Align' => 'GDTextUtil', 'Mail::Mailer' => 'MailTools', - 'MIME::Tools' => 'MIME-Tools', + 'Mail::Base64' => 'MIME-Base64', + 'MIME::Parser' => 'MIME-Tools', ); sub install_command { |