This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
520974d
)
Porting/Maintainers.pm uses a _ prototype, which is a 5.10 feature, so
author
Nicholas Clark
<nick@ccl4.org>
Mon, 12 Nov 2007 23:20:11 +0000
(23:20 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Mon, 12 Nov 2007 23:20:11 +0000
(23:20 +0000)
use 5.010; to trap 5.8.x and earlier before they choke.
p4raw-id: //depot/perl@32297
Porting/Maintainers.pm
patch
|
blob
|
blame
|
history
diff --git
a/Porting/Maintainers.pm
b/Porting/Maintainers.pm
index
ce773ea
..
e876f8c
100644
(file)
--- a/
Porting/Maintainers.pm
+++ b/
Porting/Maintainers.pm
@@
-7,6
+7,7
@@
package Maintainers;
use strict;
use lib "Porting";
+use 5.010;
require "Maintainers.pl";
use vars qw(%Modules %Maintainers);