diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-05-22 15:15:09 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-23 21:23:29 +0000 |
commit | e6d61defd5684ffe8111cd203c104889369b780a (patch) | |
tree | 7f9e6263d03ab7ec3cecadb760e416aa29cd022f /lib/vars.pm | |
parent | 386f5e9f74b08dfab8c60f26e01a8957786e4d5b (diff) | |
download | perl-e6d61defd5684ffe8111cd203c104889369b780a.tar.gz |
Sensible minimum version
Message-ID: <20010522141509.J701@blackrider.blackstar.co.uk>
p4raw-id: //depot/perl@10181
Diffstat (limited to 'lib/vars.pm')
-rw-r--r-- | lib/vars.pm | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/lib/vars.pm b/lib/vars.pm index 39c39934c9..4abc2d1c08 100644 --- a/lib/vars.pm +++ b/lib/vars.pm @@ -1,18 +1,11 @@ package vars; -require 5.002; +require 5.6.0; -our $VERSION = '1.00'; - -# The following require can't be removed during maintenance -# releases, sadly, because of the risk of buggy code that does -# require Carp; Carp::croak "..."; without brackets dying -# if Carp hasn't been loaded in earlier compile time. :-( -# We'll let those bugs get found on the development track. -require Carp if $] < 5.00450; +our $VERSION = '1.01'; use warnings::register; -require strict; +use strict qw(vars subs); sub import { my $callpack = caller; |