Changeset 466 in svn for branches/1.2
- Timestamp:
- 2007-08-05T02:37:02Z (11 years ago)
- Location:
- branches/1.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/config.m4
r411 r466 28 28 mmap.c \ 29 29 mem.c \ 30 xc_malloc.c \31 30 xc_shm.c \ 32 31 const_string.c \ … … 52 51 if test "$PHP_XCACHE_TEST" != "no"; then 53 52 XCACHE_ENABLE_TEST=-DXCACHE_ENABLE_TEST 53 xcache_sources="$xcache_sources xc_malloc.c" 54 54 AC_DEFINE([HAVE_XCACHE_TEST], 1, [Define to enable XCache self test]) 55 55 else -
branches/1.2/config.w32
r413 r466 16 16 mmap.c \ 17 17 mem.c \ 18 xc_malloc.c \19 18 xc_shm.c \ 20 19 const_string.c \ … … 114 113 if (PHP_XCACHE_TEST != "no") { 115 114 ADD_FLAG("XCACHE_ENABLE_TEST", "-DXCACHE_ENABLE_TEST"); 115 xcache_sources += " xc_malloc.c"; 116 116 AC_DEFINE("HAVE_XCACHE_TEST", 1, "Define to enable XCache self test"); 117 117 } -
branches/1.2/xc_shm.c
r163 r466 20 20 { 21 21 extern void xc_shm_mem_init(); 22 #ifdef HAVE_XCACHE_TEST 22 23 extern void xc_shm_malloc_register(); 24 #endif 23 25 extern void xc_shm_mmap_register(); 24 26 25 27 memset(xc_shm_schemes, 0, sizeof(xc_shm_schemes)); 26 28 xc_shm_mem_init(); 29 #ifdef HAVE_XCACHE_TEST 27 30 xc_shm_malloc_register(); 31 #endif 28 32 xc_shm_mmap_register(); 29 33 }
Note: See TracChangeset
for help on using the changeset viewer.