Commit 093f6970 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 311277: MIME::Parser is not found with ActivePerl - Patch by byron jones…

Bug 311277: MIME::Parser is not found with ActivePerl - Patch by byron jones (glob) <bugzilla@glob.com.au> r=wurblzap a=justdave
parent 75ab7e01
...@@ -328,7 +328,8 @@ my $modules = [ ...@@ -328,7 +328,8 @@ my $modules = [
version => '3.01' version => '3.01'
}, },
{ {
name => 'MIME::Parser', # MIME::Parser is packaged as MIME::Tools on ActiveState Perl
name => $^O =~ /MSWin32/i ? 'MIME::Tools' : 'MIME::Parser',
version => '5.406' version => '5.406'
}, },
{ {
...@@ -352,7 +353,7 @@ my %ppm_modules = ( ...@@ -352,7 +353,7 @@ my %ppm_modules = (
'GD::Text::Align' => 'GDTextUtil', 'GD::Text::Align' => 'GDTextUtil',
'Mail::Mailer' => 'MailTools', 'Mail::Mailer' => 'MailTools',
'Mail::Base64' => 'MIME-Base64', 'Mail::Base64' => 'MIME-Base64',
'MIME::Parser' => 'MIME-Tools', 'MIME::Tools' => 'MIME-Tools',
); );
sub install_command { sub install_command {
......
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