diff options
author | Chip Salzenberg <chip@perl.com> | 1997-03-21 19:30:20 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-03-22 15:34:25 +1200 |
commit | 24a13b90d71fdf865506aa54584da797a181adbb (patch) | |
tree | 5ca7a1482afe9f22960456349f087ae40c7e22b4 | |
parent | 662a7e3f419913fcaac63451e3424478903b6e79 (diff) | |
download | perl-24a13b90d71fdf865506aa54584da797a181adbb.tar.gz |
Fix C<require> in Getopt::Long to work with 5.003
-rw-r--r-- | lib/Getopt/Long.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Getopt/Long.pm b/lib/Getopt/Long.pm index 740b83fe54..d752b3be11 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+)/); |