projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
520974d
)
Porting/Maintainers.pm uses a _ prototype, which is a 5.10 feature, so
Nicholas Clark [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);