Changeset 1146 in subversion


Ignore:
Timestamp:
Feb 27, 2008 8:46:24 AM (5 years ago)
Author:
thomasb
Message:

Add checks for GD and Mcrypt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/installer/check.php

    r1144 r1146  
    44$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', 'Sockets' => 'sockets'); 
    55 
    6 $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl'); 
     6$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 
     7    'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', 'GD' => 'gd'); 
    78 
    89$required_libs = array('PEAR' => 'PEAR.php', 'DB' => 'DB.php', 'MDB2' => 'MDB2.php', 
     
    2324    'Libiconv' => 'http://www.php.net/manual/en/ref.iconv.php', 
    2425    'Multibyte' => 'http://www.php.net/manual/en/ref.mbstring.php', 
     26    'Mcrypt' => 'http://www.php.net/manual/en/ref.mcrypt.php', 
    2527    'OpenSSL' => 'http://www.php.net/manual/en/ref.openssl.php', 
     28    'GD' => 'http://www.php.net/manual/en/ref.image.php', 
    2629    'PEAR' => 'http://pear.php.net', 
    2730    'MDB2' => 'http://pear.php.net/package/MDB2', 
Note: See TracChangeset for help on using the changeset viewer.