From: Chip Salzenberg Date: Fri, 21 Mar 1997 07:30:20 +0000 (+1200) Subject: Fix C in Getopt::Long to work with 5.003 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=24a13b90d71fdf865506aa54584da797a181adbb;p=p5sagit%2Fp5-mst-13.2.git Fix C in Getopt::Long to work with 5.003 --- diff --git a/lib/Getopt/Long.pm b/lib/Getopt/Long.pm index 740b83f..d752b3b 100644 --- a/lib/Getopt/Long.pm +++ b/lib/Getopt/Long.pm @@ -522,7 +522,7 @@ cause options parsing to fail. use strict; BEGIN { - require 5.00327; + require 5.003; use Exporter (); use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); $VERSION = sprintf("%d.%02d", q$Revision: 2.9 $ =~ /(\d+)\.(\d+)/);