Added check for php calendar extension.

(Its extension is included in the base php package for Linux.
But, It is not included in FreeBSD by default. So, it should be checked.)
This commit is contained in:
Junichi Satoh 2016-12-22 16:45:48 +09:00
parent 3e1220bdb8
commit 40171d2db3
1 changed files with 1 additions and 0 deletions

View File

@ -591,6 +591,7 @@ function install_step2() {
$res += check_extension("json","PHP json extension");
$res += check_extension("curl","CURL (Client URL Library)");
$res += check_extension("filter","PHP filter extension");
$res += check_extension("calendar","PHP calendar extension");
if (PHP_OS == "FreeBSD") {
$res += check_exists ("/usr/local/bin/twopi","Graphviz Binary");
}