Subject: | Small patch to make File::Temp work under Perl 5.004 |
Hello,
Testing this module reveals that it passes its test suite under Perl 5.004.
Unless there is a reason uncovered by the test suite, can you change the required Perl version so that it can be installed under 5.004 ?
(Trivial patch attached)
Thanks
--- File-Temp-0.16/Temp.pm 2005-02-22 22:37:53.000000000 +0100
+++ File-Temp-0.16+01/Temp.pm 2005-08-13 18:30:02.144780381 +0200
@@ -128,8 +128,8 @@
=cut
# 5.6.0 gives us S_IWOTH, S_IWGRP, our and auto-vivifying filehandls
-# People would like a version on 5.005 so give them what they want :-)
-use 5.005;
+# People would like a version on 5.004 so give them what they want :-)
+use 5.004;
use strict;
use Carp;
use File::Spec 0.8;