Changeset 978
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r976 r978 6 6 ======== 7 7 * closes #972: warning/error when XCache is loaded incorrectly 8 * closes #73: warn for improper PHP_FCGI_CHILDREN setting fcgi mode 8 * closes #73: warn for improper PHP_FCGI_CHILDREN setting fcgi mode (>=PHP_5_3) 9 9 * closes #174: updated api for clear all cache 10 10 -
trunk/xcache.c
r976 r978 3871 3871 REGISTER_INI_ENTRIES(); 3872 3872 3873 /* additional_functions requires PHP 5.3. TODO: find simpler way to do it */ 3874 #ifdef ZEND_ENGINE_2_3 3873 3875 if (strcmp(sapi_module.name, "cgi-fcgi") == 0 && !sapi_module.additional_functions && !getenv("XCACHE_SKIP_FCGI_WARNING") && !getenv("GATEWAY_INTERFACE")) { 3874 3876 if ((getenv("PHP_FCGI_CHILDREN") == NULL) || (atoi(getenv("PHP_FCGI_CHILDREN")) < 1)) { … … 3876 3878 } 3877 3879 } 3880 #endif 3878 3881 3879 3882 xc_config_long(&xc_php_size, "xcache.size", "0");

