ExtUtils::MakeMaker was not getting the $VERSION from Everything.pm
because it was a lexical not a package variable. The enclosed diff
fixes this:
--- Everything.pm.orig=092005-12-23 07:04:30.000000000 -0800
+++ Everything.pm=092005-12-23 07:04:51.000000000 -0800
@@ -24,7 +24,7 @@
my $everythingLog =3D "/tmp/everything.errlog";
# Used by Makefile.PL to determine the version of the install.
-my $VERSION =3D 0.8;
+our $VERSION =3D 0.8;
# Arrays for error caching
use vars qw(@fsErrors);
@@ -33,7 +33,7 @@
use vars qw(%NODEBASES);
# Are we being run from the command line?
-use vars qw($commandLine);
+use vars qw($commandLine);
sub BEGIN
{
|