From: Frédéric Buclin Date: Fri, 25 Mar 2016 21:30:54 +0000 (+0100) Subject: Bug 1257224: Windows-specific modules are missing in Makefile.PL X-Git-Tag: release-5.1.1~47 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab88cc202fcfd78088338c378d2f02515838331e;p=thirdparty%2Fbugzilla.git Bug 1257224: Windows-specific modules are missing in Makefile.PL r=dylan --- diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 6e8a469c5d..80bf255df2 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -524,7 +524,7 @@ use constant DB_MODULE => { }; # True if we're on Win32. -use constant ON_WINDOWS => ($^O =~ /MSWin32/i) ? 1 : 0; +use constant ON_WINDOWS => $^O eq 'MSWin32' ? 1 : 0; # True if we're using ActiveState Perl (as opposed to Strawberry) on Windows. use constant ON_ACTIVESTATE => eval { &Win32::BuildNumber }; diff --git a/Makefile.PL b/Makefile.PL index 3880acaff2..062a947543 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -61,6 +61,13 @@ my %requires = ( 'URI' => '1.55', ); +# Windows requires some additional modules. +if ($^O eq 'MSWin32') { + $requires{'Win32'} = '0.35'; + $requires{'Win32::API'} = '0.55'; + $requires{'DateTime::TimeZone::Local::Win32'} = '1.64'; +} + my %optional_features = ( features => { prereqs => { runtime => { requires => { 'CPAN::Meta::Check' => 0, 'Module::Runtime' => 0, 'CPAN::Meta' => 0, }, }, },