Made a note about Cache::FileCache being optional in testEnvironment.pl.
This commit is contained in:
parent
0d3dd0fcd8
commit
3573aa0ddd
1 changed files with 12 additions and 1 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue