Made a note about Cache::FileCache being optional in testEnvironment.pl.

This commit is contained in:
JT Smith 2003-04-10 00:30:43 +00:00
parent 0d3dd0fcd8
commit 3573aa0ddd

View file

@ -161,13 +161,24 @@ if (eval { require Date::Calc }) {
}
}
print "Cache::FileCache module (optional) ....... ";
print "Cache::FileCache module (optional*) ...... ";
if (eval { require Cache::FileCache }) {
print "OK\n";
} else {
print "Not installed. Caching not possible.\n";
}
print <<STOP;
* Please note that Cache::FileCache is not
optional in all environments (such as Mac
OS X). Also note, that Cache::FileCache
is not available for Windows style
environments due to limitations on those
systems.
STOP
print "Image::Magick module (optional) .......... ";
if (eval { require Image::Magick }) {
print "OK\n";