File::Temp is only in Perl 5.6.1, so Git.pm won't usually work with older Perl versions; this gives a more descriptive error message ('Perl version too old'), rather than erroring out with a 'File::Temp not found' message. (File::Temp is probably not installable on older Perl version anyway.) Signed-off-by: Lea Wiemann <LeWiemann@xxxxxxxxx> --- perl/Git.pm | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/perl/Git.pm b/perl/Git.pm index 405f68f..91c3fc6 100644 --- a/perl/Git.pm +++ b/perl/Git.pm @@ -96,6 +96,9 @@ increase notwithstanding). =cut +# File::Temp is only in core as of Perl 5.6.1. +use 5.006001; + use Carp qw(carp croak); # but croak is bad - throw instead use Error qw(:try); use Cwd qw(abs_path); -- 1.5.6.3.539.g5ceae -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html