From: lpsolit%gmail.com <> Date: Tue, 3 Jan 2006 17:09:32 +0000 (+0000) Subject: Bug 311277: MIME::Parser is not found with ActivePerl - Patch by byron jones (glob... X-Git-Tag: bugzilla-2.22rc1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=093f6970ea0e8356b5f8a51ec916926fcb68b41f;p=thirdparty%2Fbugzilla.git Bug 311277: MIME::Parser is not found with ActivePerl - Patch by byron jones (glob) r=wurblzap a=justdave --- diff --git a/checksetup.pl b/checksetup.pl index 0e47793143..7522d994cd 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 {