Changeset 242
- Timestamp:
- 07/25/06 14:56:22 (2 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/loader.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r241 r242 4 4 from disk cache. This fixes bug #147 5 5 * Some update in the release notes for the upcoming rc1 6 * Fix loader.c too so we don't get any linking errors. 6 7 7 8 2006-07-24 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> eaccelerator/trunk/loader.c
r203 r242 38 38 #include "ea_restore.h" 39 39 #include <math.h> 40 #ifdef ZEND_ENGINE_2_1 41 #include "zend_vm.h" 42 #endif 40 43 41 44 #ifdef HAVE_EACCELERATOR_STANDALONE_LOADER … … 397 400 static void decode_op(zend_op_array *to, zend_op *opline, unsigned int ops, 398 401 char **p, unsigned int* l TSRMLS_DC) { 399 #ifdef ZEND_ENGINE_2 400 #ifdef HAVE_EACCELERATOR_STANDALONE_LOADER 402 #ifdef ZEND_ENGINE_2_1 403 ZEND_VM_SET_OPCODE_HANDLER(opline); 404 #elif defined(ZEND_ENGINE_2) 401 405 opline->handler = zend_opcode_handlers[opline->opcode]; 402 #else403 opline->handler = get_opcode_handler(opline->opcode TSRMLS_CC);404 #endif405 406 #endif 406 407 opline->lineno = decode32(p, l);