Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r1224 r1230 3 3 ======== 4 4 * adds support for PHP_5_5 5 6 3.0.2 2013-??-?? 7 ChangeLog 8 ======== 9 * fixes #297: segv on startup under sparc, ini setting overflow 5 10 6 11 3.0.1 2013-01-11 -
trunk/NEWS
r1224 r1230 1 3.1. 12012-??-??1 3.1.0 2012-??-?? 2 2 ======== 3 3 * adds support for PHP_5_5 4 5 3.0.2 2013-??-?? 6 ======== 7 * bug fixes 4 8 5 9 3.0.1 2013-01-11 -
trunk/xcache.c
r1201 r1230 37 37 /* {{{ globals */ 38 38 static char *xc_coredump_dir = NULL; 39 static zend_bool xc_coredump_type = 0; 39 #ifdef ZEND_WIN32 40 static zend_ulong xc_coredump_type = 0; 41 #endif 40 42 static zend_bool xc_disable_on_crash = 0; 41 43 … … 721 723 PHP_INI_BEGIN() 722 724 PHP_INI_ENTRY1 ("xcache.coredump_directory", "", PHP_INI_SYSTEM, xcache_OnUpdateString, &xc_coredump_dir) 725 #ifdef ZEND_WIN32 723 726 PHP_INI_ENTRY1 ("xcache.coredump_type", "0", PHP_INI_SYSTEM, xcache_OnUpdateULong, &xc_coredump_type) 727 #endif 724 728 PHP_INI_ENTRY1_EX ("xcache.disable_on_crash", "0", PHP_INI_SYSTEM, xcache_OnUpdateBool, &xc_disable_on_crash, zend_ini_boolean_displayer_cb) 725 729 PHP_INI_ENTRY1_EX ("xcache.test", "0", PHP_INI_SYSTEM, xcache_OnUpdateBool, &xc_test, zend_ini_boolean_displayer_cb)
Note: See TracChangeset
for help on using the changeset viewer.

