+2011-03-03 Andrew Ruthven
+ It turns out that $SIG{ALRM} doesn't always work with LWP::UserAgent
+ as you'd expect. I've certainly noticed mythtv-status hanging
+ during cron jobs on a regular basis, and this could well explain
+ it.
+
+2010-12-01 Andrew Ruthven
+ Make sure that Date::Manip is running in 5.x compatibiity mode.
+
2010-09-16 Andrew Ruthven
Add support for extra recording state.
# While I would love to enable the 6.xx interface for Date::Manip we may
# still need to run on platforms that only have version 5.x. So we'll
# turn on backwards compatible mode for now.
-BEGIN {
- $Date::Manip::Backend = 'DM5';
+{
+ no warnings 'once';
+ $Date::Manip::Backend = 'DM5';
}
use LWP::UserAgent;