Don't load Config.pm, which isn't used
p4raw-id: //depot/perl@27639
package FileCache;
-our $VERSION = '1.06';
+our $VERSION = '1.07';
=head1 NAME
require 5.006;
use Carp;
-use Config;
use strict;
no strict 'refs';
sub cacheout_close {
# Short-circuit in case the filehandle disappeared
my $pkg = caller($_[1]||0);
- fileno(*{$pkg . '::' . $_[0]}) &&
+ defined fileno(*{$pkg . '::' . $_[0]}) &&
CORE::close(*{$pkg . '::' . $_[0]});
delete $isopen{$_[0]};
}