svn commit: r1342252 - /incubator/vcl/trunk/web/testsetup.php

2012-05-24 Thread jfthomps
Author: jfthomps
Date: Thu May 24 13:30:44 2012
New Revision: 1342252

URL: http://svn.apache.org/viewvc?rev=1342252view=rev
Log:
VCL-576
Finalizing for 2.3 release

testsetup.php: added gettext to list of checked php extensions

Modified:
incubator/vcl/trunk/web/testsetup.php

Modified: incubator/vcl/trunk/web/testsetup.php
URL: 
http://svn.apache.org/viewvc/incubator/vcl/trunk/web/testsetup.php?rev=1342252r1=1342251r2=1342252view=diff
==
--- incubator/vcl/trunk/web/testsetup.php (original)
+++ incubator/vcl/trunk/web/testsetup.php Thu May 24 13:30:44 2012
@@ -268,9 +268,9 @@ if($includeconf  include('.ht-inc/conf
 # required extentions
 title(Testing for required php extensions);
 if(version_compare(phpversion(), 5.2, ))
-   $requiredexts = array('gd', 'mysql', 'openssl', 'sysvsem', 'xml', 
'xmlrpc', 'session', 'pcre', 'sockets', 'ldap');
+   $requiredexts = array('gd', 'mysql', 'openssl', 'sysvsem', 'xml', 
'xmlrpc', 'session', 'pcre', 'sockets', 'ldap', 'gettext');
 else
-   $requiredexts = array('gd', 'mysql', 'openssl', 'sysvsem', 'xml', 
'xmlrpc', 'session', 'pcre', 'sockets', 'json', 'ldap');
+   $requiredexts = array('gd', 'mysql', 'openssl', 'sysvsem', 'xml', 
'xmlrpc', 'session', 'pcre', 'sockets', 'ldap', 'gettext', 'json');
 $exts = get_loaded_extensions();
 $diff = array_diff($requiredexts, $exts);
 print ul\n;




svn commit: r1342256 - in /incubator/vcl/trunk: CHANGELOG README

2012-05-24 Thread jfthomps
Author: jfthomps
Date: Thu May 24 13:33:47 2012
New Revision: 1342256

URL: http://svn.apache.org/viewvc?rev=1342256view=rev
Log:
VCL-576
Finalizing for 2.3 release

README and CHANGELOG: added dependency on php-gettext

Modified:
incubator/vcl/trunk/CHANGELOG
incubator/vcl/trunk/README

Modified: incubator/vcl/trunk/CHANGELOG
URL: 
http://svn.apache.org/viewvc/incubator/vcl/trunk/CHANGELOG?rev=1342256r1=1342255r2=1342256view=diff
==
--- incubator/vcl/trunk/CHANGELOG (original)
+++ incubator/vcl/trunk/CHANGELOG Thu May 24 13:33:47 2012
@@ -5,6 +5,7 @@ Dependency changes:
 Web frontend:
 -removed dependency on mcrypt
 -php-process - this is an added requirement only on RHEL/CentOS 6 because php 
semaphore locking was separated out into this package
+-php-gettext - this was added for multilingualization
 
 database:
 -none

Modified: incubator/vcl/trunk/README
URL: 
http://svn.apache.org/viewvc/incubator/vcl/trunk/README?rev=1342256r1=1342255r2=1342256view=diff
==
--- incubator/vcl/trunk/README (original)
+++ incubator/vcl/trunk/README Thu May 24 13:33:47 2012
@@ -25,6 +25,7 @@ php modules (some of these may be built 
 - php-sysvsem
 - php-xml
 - php-xmlrpc
+- php-gettext
 - php-ldap (if you will be using ldap authentication)
 - php-process (for RHEL/CentOS 6)