From c51304ddc85b5c96c954eddea77404cfc9bff249 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 28 Jul 2010 04:51:35 -0400 Subject: [PATCH] - Fix performance of threads parsing --- installer/check.php | 57 +++++++++++++++++++++++++++++++++++++++------------------ 1 files changed, 39 insertions(+), 18 deletions(-) diff --git a/installer/check.php b/installer/check.php index 3afbdf7..d1775a3 100644 --- a/installer/check.php +++ b/installer/check.php @@ -1,25 +1,47 @@ <form action="index.php" method="get"> <?php -$required_php_exts = array('PCRE' => 'pcre', 'DOM' => 'dom', - 'Session' => 'session', 'XML' => 'xml', 'JSON' => 'json'); +$required_php_exts = array( + 'PCRE' => 'pcre', + 'DOM' => 'dom', + 'Session' => 'session', + 'XML' => 'xml', + 'JSON' => 'json' +); -$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', - 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', - 'GD' => 'gd'); +$optional_php_exts = array( + 'FileInfo' => 'fileinfo', + 'Libiconv' => 'iconv', + 'Multibyte' => 'mbstring', + 'OpenSSL' => 'openssl', + 'Mcrypt' => 'mcrypt', +); -$required_libs = array('PEAR' => 'PEAR.php', 'MDB2' => 'MDB2.php', - 'Net_SMTP' => 'Net/SMTP.php', 'Mail_mime' => 'Mail/mime.php', - 'iilConnection' => 'lib/imap.inc'); +$required_libs = array( + 'PEAR' => 'PEAR.php', + 'MDB2' => 'MDB2.php', + 'Net_SMTP' => 'Net/SMTP.php', + 'Mail_mime' => 'Mail/mime.php', +); -$supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli', - 'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite'); +$supported_dbs = array( + 'MySQL' => 'mysql', + 'MySQLi' => 'mysqli', + 'PostgreSQL' => 'pgsql', + 'SQLite (v2)' => 'sqlite', +); -$ini_checks = array('file_uploads' => 1, 'session.auto_start' => 0, - 'zend.ze1_compatibility_mode' => 0, 'mbstring.func_overload' => 0, - 'suhosin.session.encrypt' => 0); +$ini_checks = array( + 'file_uploads' => 1, + 'session.auto_start' => 0, + 'zend.ze1_compatibility_mode' => 0, + 'mbstring.func_overload' => 0, + 'suhosin.session.encrypt' => 0, +); -$optional_checks = array('date.timezone' => '-NOTEMPTY-'); +$optional_checks = array( + 'date.timezone' => '-NOTEMPTY-', +); $source_urls = array( 'Sockets' => 'http://www.php.net/manual/en/book.sockets.php', @@ -30,7 +52,6 @@ 'Multibyte' => 'http://www.php.net/manual/en/book.mbstring.php', 'Mcrypt' => 'http://www.php.net/manual/en/book.mcrypt.php', 'OpenSSL' => 'http://www.php.net/manual/en/book.openssl.php', - 'GD' => 'http://www.php.net/manual/en/book.image.php', 'JSON' => 'http://www.php.net/manual/en/book.json.php', 'DOM' => 'http://www.php.net/manual/en/book.dom.php', 'PEAR' => 'http://pear.php.net', @@ -61,7 +82,7 @@ $ext_dir = ini_get('extension_dir'); $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : ''; -foreach ($required_php_exts AS $name => $ext) { +foreach ($required_php_exts as $name => $ext) { if (extension_loaded($ext)) { $RCI->pass($name); } else { @@ -77,7 +98,7 @@ <p class="hint">The next couple of extensions are <em>optional</em> and recommended to get the best performance:</p> <?php -foreach ($optional_php_exts AS $name => $ext) { +foreach ($optional_php_exts as $name => $ext) { if (extension_loaded($ext)) { $RCI->pass($name); } @@ -98,7 +119,7 @@ <?php $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : ''; -foreach ($supported_dbs AS $database => $ext) { +foreach ($supported_dbs as $database => $ext) { if (extension_loaded($ext)) { $RCI->pass($database); } -- Gitblit v1.9.1