Changeset 1004
- Timestamp:
- 2012-07-19T16:06:34+02:00 (10 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
config.m4 (modified) (1 diff)
-
config.w32 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/config.m4
r1003 r1004 24 24 fi 25 25 26 xcache_sources=" 27 util/xc_stack.c \28 util/xc_trace.c \29 xcache.c \30 xcache/xc_const_string.c \31 xcache/xc_compatibility.c \32 xcache/xc_lock.c \33 xcache/xc_mem.c \34 xcache/xc_opcode_spec.c \35 xcache/xc_processor.c \36 xcache/xc_sandbox.c \37 xcache/xc_shm.c \38 xcache/xc_shm_mmap.c \39 xcache/xc_utils.c \40 "26 xcache_sources=" \ 27 util/xc_stack.c \ 28 util/xc_trace.c \ 29 xcache.c \ 30 xcache/xc_const_string.c \ 31 xcache/xc_compatibility.c \ 32 xcache/xc_lock.c \ 33 xcache/xc_mem.c \ 34 xcache/xc_opcode_spec.c \ 35 xcache/xc_processor.c \ 36 xcache/xc_sandbox.c \ 37 xcache/xc_shm.c \ 38 xcache/xc_shm_mmap.c \ 39 xcache/xc_utils.c \ 40 " 41 41 XCACHE_MODULES="cacher" 42 42 XCACHE_MODULE([optimizer], [optimizer ], [XCACHE_OPTIMIZER], [(N/A)]) 43 43 XCACHE_MODULE([coverager], [coverager ], [XCACHE_COVERAGER], [Enable code coverage dumper, useful for testing php scripts]) 44 44 XCACHE_MODULE([assembler], [assembler ], [XCACHE_ASSEMBLER], [(N/A)]) 45 XCACHE_MODULE([disassembler], [disassembler], [XCACHE_DISASSEMBLER], [Enable opcode to php variable dumper, NOT for production server])45 XCACHE_MODULE([disassembler], [disassembler], [XCACHE_DISASSEMBLER], [Enable opcode to php variable dumper, not for server usage]) 46 46 XCACHE_MODULE([encoder], [encoder ], [XCACHE_ENCODER], [(N/A)]) 47 47 XCACHE_MODULE([decoder], [decoder ], [XCACHE_DECODER], [(N/A)]) -
trunk/config.w32
r1003 r1004 12 12 // }}} 13 13 14 var xcache_sources = " 15 util/xc_stack.c \16 util/xc_trace.c \17 xcache.c \18 xcache/xc_const_string.c \19 xcache/xc_compatibility.c \20 xcache/xc_lock.c \21 xcache/xc_mem.c \22 xcache/xc_opcode_spec.c \23 xcache/xc_processor.c \24 xcache/xc_sandbox.c \25 xcache/xc_shm.c \26 xcache/xc_shm_mmap.c \27 xcache/xc_utils.c \28 ";14 var xcache_sources = " \ 15 util/xc_stack.c \ 16 util/xc_trace.c \ 17 xcache.c \ 18 xcache/xc_const_string.c \ 19 xcache/xc_compatibility.c \ 20 xcache/xc_lock.c \ 21 xcache/xc_mem.c \ 22 xcache/xc_opcode_spec.c \ 23 xcache/xc_processor.c \ 24 xcache/xc_sandbox.c \ 25 xcache/xc_shm.c \ 26 xcache/xc_shm_mmap.c \ 27 xcache/xc_utils.c \ 28 "; 29 29 // {{{ add sources on enabled 30 30 ARG_ENABLE("xcache-optimizer", "(N/A)", "no"); 31 31 ARG_ENABLE("xcache-coverager", "Enable code coverage dumper, useful for testing php scripts", "no"); 32 32 ARG_ENABLE("xcache-assembler", "(N/A)", "no"); 33 ARG_ENABLE("xcache-disassembler", "Enable opcode to php variable dumper, NOT for production server", "no");33 ARG_ENABLE("xcache-disassembler", "Enable opcode to php variable dumper, not for server usage", "no"); 34 34 ARG_ENABLE("xcache-encoder", "(N/A)", "no"); 35 35 ARG_ENABLE("xcache-decoder", "(N/A)", "no");
Note: See TracChangeset
for help on using the changeset viewer.

