From 093f6970ea0e8356b5f8a51ec916926fcb68b41f Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 3 Jan 2006 17:09:32 +0000 Subject: Bug 311277: MIME::Parser is not found with ActivePerl - Patch by byron jones (glob) r=wurblzap a=justdave --- checksetup.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 0e4779314..7522d994c 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -328,7 +328,8 @@ my $modules = [ 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' }, { @@ -352,7 +353,7 @@ my %ppm_modules = ( 'GD::Text::Align' => 'GDTextUtil', 'Mail::Mailer' => 'MailTools', 'Mail::Base64' => 'MIME-Base64', - 'MIME::Parser' => 'MIME-Tools', + 'MIME::Tools' => 'MIME-Tools', ); sub install_command { -- cgit v1.2.3-24-g4f1b