jobinjoseph121 has asked for the wisdom of the Perl Monks concerning the following question:
use constant IS_WINDOWS => $^O eq "MSWin32" ? 1 : 0; use constant IS_SUSE => -f "/etc/SuSE-release" ? 1 + : 0; use Config::General; use Config::Properties; use Locale::Language; use Locale::Country; use FindBin qw($Bin); use Fcntl qw(:DEFAULT :flock); use Time::Local; use POSIX; use DateTime::Format::Strptime ; use Log::Log4perl; use Log::Log4perl::Level; use Storable qw(store nstore retrieve freeze thaw); use File::Basename; use File::Copy;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: In windows facing issues with DateTime, DateTime::Locale, DateTime::TimeZone, DateTime::Format::Strptime perl modules.
by 1nickt (Canon) on Aug 17, 2015 at 18:22 UTC | |
|
Re: In windows facing issues with DateTime, DateTime::Locale, DateTime::TimeZone, DateTime::Format::Strptime perl modules.
by ikegami (Patriarch) on Aug 18, 2015 at 17:28 UTC | |
|
Re: In windows facing issues with DateTime, DateTime::Locale, DateTime::TimeZone, DateTime::Format::Strptime perl modules.
by Anonymous Monk on Aug 18, 2015 at 22:49 UTC |