summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Requirements.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-05-27 17:18:58 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2015-05-27 17:18:58 +0200
commitcd263e882459f87cf68b555764869c6bd0a52119 (patch)
tree7098ce31841995c878f3336eaf8e52f08b04ae5d /Bugzilla/Install/Requirements.pm
parent37bbf30f4d7f630d960da4ba37e0bd5f8699e26b (diff)
downloadbugzilla-cd263e882459f87cf68b555764869c6bd0a52119.tar.gz
bugzilla-cd263e882459f87cf68b555764869c6bd0a52119.tar.xz
Bug 1124401: Explicitly depend on DateTime::TimeZone::Local::Win32 on Windows
r=dylan a=glob
Diffstat (limited to 'Bugzilla/Install/Requirements.pm')
-rw-r--r--Bugzilla/Install/Requirements.pm12
1 files changed, 10 insertions, 2 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index 2db36f89d..bbf7d1037 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -173,7 +173,8 @@ sub REQUIRED_MODULES {
);
if (ON_WINDOWS) {
- push(@modules, {
+ push(@modules,
+ {
package => 'Win32',
module => 'Win32',
# 0.35 fixes a memory leak in GetOSVersion, which we use.
@@ -184,7 +185,14 @@ sub REQUIRED_MODULES {
module => 'Win32::API',
# 0.55 fixes a bug with char* that might affect Bugzilla::RNG.
version => '0.55',
- });
+ },
+ {
+ package => 'DateTime-TimeZone-Local-Win32',
+ module => 'DateTime::TimeZone::Local::Win32',
+ # We require DateTime::TimeZone 1.64, so this version must match.
+ version => '1.64',
+ }
+ );
}
my $extra_modules = _get_extension_requirements('REQUIRED_MODULES');