From: Ævar Arnfjörð Bjarmason Date: Sat, 10 Mar 2012 12:29:34 +0000 (+0000) Subject: Git::I18N: compatibility with perl <5.8.3 X-Git-Tag: v1.7.10-rc2~5^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3e9c6a08c8a99349a2969f5e2c37b77a6bac9b8c;p=git.git Git::I18N: compatibility with perl <5.8.3 Change the Exporter invocation in Git::I18N to be compatible with 5.8.0 to 5.8.2 inclusive. Before Exporter 5.57 (released with 5.8.3) Exporter didn't export the 'import' subroutine. Reported-by: Tom G. Christensen Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/perl/Git/I18N.pm b/perl/Git/I18N.pm index 07597dcb9..40dd89719 100644 --- a/perl/Git/I18N.pm +++ b/perl/Git/I18N.pm @@ -2,7 +2,16 @@ package Git::I18N; use 5.008; use strict; use warnings; -use Exporter 'import'; +BEGIN { + require Exporter; + if ($] < 5.008003) { + *import = \&Exporter::import; + } else { + # Exporter 5.57 which supports this invocation was + # released with perl 5.8.3 + Exporter->import('import'); + } +} our @EXPORT = qw(__); our @EXPORT_OK = @EXPORT;