summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/check.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-27 13:46:24 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-27 13:46:24 +0000
commitd6ecba8fee6a63bf134aca3a605b1eb6f8b7e1d5 (patch)
tree14cb5bbbe12b6a06d276308d5189f6bd4799c25d /roundcubemail/installer/check.php
parent1feaf7753697132cdd713c727a1b5dd2b95d22b2 (diff)
Add checks for GD and Mcrypt
git-svn-id: https://svn.roundcube.net/trunk@1146 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/check.php')
-rw-r--r--roundcubemail/installer/check.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/installer/check.php b/roundcubemail/installer/check.php
index 06eae4236..fdab9f57c 100644
--- a/roundcubemail/installer/check.php
+++ b/roundcubemail/installer/check.php
@@ -3,7 +3,8 @@
$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', 'Sockets' => 'sockets');
-$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl');
+$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv',
+ 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', 'GD' => 'gd');
$required_libs = array('PEAR' => 'PEAR.php', 'DB' => 'DB.php', 'MDB2' => 'MDB2.php',
'Net_SMTP' => 'Net/SMTP.php', 'Mail_mime' => 'Mail/mime.php', 'iilConnection' => 'lib/imap.inc');
@@ -22,7 +23,9 @@ $source_urls = array(
'FileInfo' => 'http://www.php.net/manual/en/ref.fileinfo.php',
'Libiconv' => 'http://www.php.net/manual/en/ref.iconv.php',
'Multibyte' => 'http://www.php.net/manual/en/ref.mbstring.php',
+ 'Mcrypt' => 'http://www.php.net/manual/en/ref.mcrypt.php',
'OpenSSL' => 'http://www.php.net/manual/en/ref.openssl.php',
+ 'GD' => 'http://www.php.net/manual/en/ref.image.php',
'PEAR' => 'http://pear.php.net',
'MDB2' => 'http://pear.php.net/package/MDB2',
'Net_SMTP' => 'http://pear.php.net/package/Net_SMTP',