]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 472458: checksetup.pl should check for DateTime::TimeZone - Patch by Frédéric...
authorlpsolit%gmail.com <>
Wed, 7 Jan 2009 18:45:55 +0000 (18:45 +0000)
committerlpsolit%gmail.com <>
Wed, 7 Jan 2009 18:45:55 +0000 (18:45 +0000)
Bugzilla/Install/Requirements.pm

index 5647181cc75dacd4100f633aa6c81abba27abea8..4d3296c0938ee2d3ce98fcba7ac3620ee704311d 100644 (file)
@@ -80,6 +80,15 @@ sub REQUIRED_MODULES {
         module  => 'DateTime',
         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',
         module  => 'File::Spec',