Skip Menu |

This queue is for tickets about the Cache-Cache CPAN distribution.

Report information
The Basics
Id: 15524
Status: resolved
Priority: 0/
Queue: Cache-Cache

People
Owner: Nobody in particular
Requestors: bfaist [...] oneil.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: Cache::NullCache needs to use or require Cache::BaseCache
Add "use Cache::BaseCache;" to Cache::NullCache to avoid a warning message. Warning message in this example: C:\Perl\site\lib\Cache>perl -w -MCache::NullCache -e "print join(qq{\n},@INC)" Can't locate package Cache::BaseCache for @Cache::NullCache::ISA. C:/Perl/lib C:/Perl/site/lib After suggested change: C:\Perl\site\lib\Cache>perl -w -MCache::NullCache -e "print join(qq{\n},@INC)" C:/Perl/lib C:/Perl/site/lib C:\Perl\site\lib\Cache>perl -v This is perl, v5.8.6 built for MSWin32-x86-multi-thread (with 3 registered patches, see perl -V for more detail)
Thanks! Fixed in the CVS version (http://perl-cache.sourceforge.net/). -DeWitt