From 27a91fb4eb666b3e2ececb9b2bd3b04d05181828 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Mon, 12 Nov 2007 23:20:11 +0000 Subject: [PATCH] Porting/Maintainers.pm uses a _ prototype, which is a 5.10 feature, so use 5.010; to trap 5.8.x and earlier before they choke. p4raw-id: //depot/perl@32297 --- Porting/Maintainers.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Porting/Maintainers.pm b/Porting/Maintainers.pm index ce773ea..e876f8c 100644 --- 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); -- 2.7.4