Commit 1ef4ee77 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 472458: checksetup.pl should check for DateTime::TimeZone - Patch by…

Bug 472458: checksetup.pl should check for DateTime::TimeZone - Patch by Fré©ric Buclin <LpSolit@gmail.com> r/a=mkanat
parent 07d3c0d7
...@@ -80,6 +80,15 @@ sub REQUIRED_MODULES { ...@@ -80,6 +80,15 @@ sub REQUIRED_MODULES {
module => 'DateTime', module => 'DateTime',
version => '0.28' version => '0.28'
}, },
# 0.79 is required to work on Windows Vista and Windows Server 2008.
# As correctly detecting the flavor of Windows is not easy,
# we require this version for all Windows installations.
# 0.71 fixes a major bug affecting all platforms.
{
package => 'DateTime-TimeZone',
module => 'DateTime::TimeZone',
version => ON_WINDOWS ? '0.79' : '0.71'
},
{ {
package => 'PathTools', package => 'PathTools',
module => 'File::Spec', module => 'File::Spec',
......
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