diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index d8e92bcb6c..38b71a9248 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2010-12-17 Miguel de Dios + + * install.php: added to check "curl" dependency. + 2010-12-17 Sancho Lerena * pandora_console.spec, diff --git a/pandora_console/install.php b/pandora_console/install.php index 9b5e493bf6..64535d6771 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -308,9 +308,11 @@ function install_step2() { $res += check_include("PEAR.php","PEAR PHP Library"); $res += check_include("DB.php","PEAR:DB PHP Library"); $res += check_include("XML/RPC.php","PEAR::XML_RPC PHP Library"); + $res += check_extension("curl","CURL (Client URL Library)"); if (PHP_OS == "FreeBSD") { $res += check_exists ("/usr/local/bin/twopi","Graphviz Binary"); - } else { + } + else { $res += check_exists ("/usr/bin/twopi","Graphviz Binary"); }