Author: fabien
Date: 2010-03-02 19:03:26 +0100 (Tue, 02 Mar 2010)
New Revision: 28348

Modified:
   branches/1.3/data/bin/check_configuration.php
   branches/1.4/data/bin/check_configuration.php
Log:
[1.3, 1.4] added a check for the php_posix extension as some distrib disable it 
(closes #8312)

Modified: branches/1.3/data/bin/check_configuration.php
===================================================================
--- branches/1.3/data/bin/check_configuration.php       2010-03-02 17:47:14 UTC 
(rev 28347)
+++ branches/1.3/data/bin/check_configuration.php       2010-03-02 18:03:26 UTC 
(rev 28348)
@@ -83,6 +83,7 @@
 check(function_exists('mb_strlen'), 'The mb_strlen() function is available', 
'Install mb_strlen() function', false);
 check(function_exists('iconv'), 'The iconv() function is available', 'Install 
iconv() function', false);
 check(function_exists('utf8_decode'), 'The utf8_decode() is available', 
'Install utf8_decode() function', false);
+check(function_exists('posix_isatty'), 'The posix_isatty() is available', 
'Enable the php_posix extension (used to colorized the CLI output)', false);
 
 $accelerator = 
   (function_exists('apc_store') && ini_get('apc.enabled'))

Modified: branches/1.4/data/bin/check_configuration.php
===================================================================
--- branches/1.4/data/bin/check_configuration.php       2010-03-02 17:47:14 UTC 
(rev 28347)
+++ branches/1.4/data/bin/check_configuration.php       2010-03-02 18:03:26 UTC 
(rev 28348)
@@ -83,6 +83,7 @@
 check(function_exists('mb_strlen'), 'The mb_strlen() function is available', 
'Install mb_strlen() function', false);
 check(function_exists('iconv'), 'The iconv() function is available', 'Install 
iconv() function', false);
 check(function_exists('utf8_decode'), 'The utf8_decode() is available', 
'Install utf8_decode() function', false);
+check(function_exists('posix_isatty'), 'The posix_isatty() is available', 
'Enable the php_posix extension (used to colorized the CLI output)', false);
 
 $accelerator = 
   (function_exists('apc_store') && ini_get('apc.enabled'))

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to