diff options
Diffstat (limited to 'lib/Time')
-rw-r--r-- | lib/Time/Local.pm | 2 | ||||
-rw-r--r-- | lib/Time/gmtime.pm | 3 | ||||
-rw-r--r-- | lib/Time/localtime.pm | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/lib/Time/Local.pm b/lib/Time/Local.pm index 61805849f8..e99aab1321 100644 --- a/lib/Time/Local.pm +++ b/lib/Time/Local.pm @@ -1,5 +1,5 @@ package Time::Local; -require 5.6.0; +use 5.006; require Exporter; use Carp; use strict; diff --git a/lib/Time/gmtime.pm b/lib/Time/gmtime.pm index 39cfdc2fd7..4e1359b36d 100644 --- a/lib/Time/gmtime.pm +++ b/lib/Time/gmtime.pm @@ -1,8 +1,9 @@ package Time::gmtime; use strict; +use 5.006_001; + use Time::tm; -use 5.6.1; our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); BEGIN { use Exporter (); diff --git a/lib/Time/localtime.pm b/lib/Time/localtime.pm index 5495559863..c3d9fb3608 100644 --- a/lib/Time/localtime.pm +++ b/lib/Time/localtime.pm @@ -1,8 +1,9 @@ package Time::localtime; use strict; +use 5.006_001; + use Time::tm; -use 5.6.1; our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); BEGIN { use Exporter (); |