diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-12 10:00:30 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-12 10:00:30 +0000 |
commit | 9451cbc956e1f0c870763d52e6eb6cf210e91caf (patch) | |
tree | 9358e0d25f06047de46e6c74d903fb25864706d2 | |
parent | 453f83e76b95e696c647aafba15187f8c92187be (diff) | |
download | perl-9451cbc956e1f0c870763d52e6eb6cf210e91caf.tar.gz |
add $AutoLoader::VERSION
p4raw-id: //depot/perl@2890
-rw-r--r-- | lib/AutoLoader.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/AutoLoader.pm b/lib/AutoLoader.pm index 5b083a7894..94a9a69295 100644 --- a/lib/AutoLoader.pm +++ b/lib/AutoLoader.pm @@ -1,6 +1,6 @@ package AutoLoader; -use vars qw(@EXPORT @EXPORT_OK); +use vars qw(@EXPORT @EXPORT_OK $VERSION); my $is_dosish; my $is_vms; @@ -11,6 +11,7 @@ BEGIN { @EXPORT_OK = qw(AUTOLOAD); $is_dosish = $^O eq 'dos' || $^O eq 'os2' || $^O eq 'MSWin32'; $is_vms = $^O eq 'VMS'; + $VERSION = '5.55'; } AUTOLOAD { |