1
0
Fork 0

refactor: fix build for pre 5.2

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@996 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 2012-07-19 02:42:39 +00:00
parent e5ee2e69e3
commit 902fdb401e
2 changed files with 5 additions and 1 deletions

View File

@ -395,7 +395,7 @@ int xc_foreach_early_binding_class(zend_op_array *op_array, void (*callback)(zen
}
/* }}} */
#ifndef ZEND_COMPILE_DELAYED_BINDING
static int xc_do_early_binding(zend_op_array *op_array, HashTable *class_table, int oplineno TSRMLS_DC) /* {{{ */
int xc_do_early_binding(zend_op_array *op_array, HashTable *class_table, int oplineno TSRMLS_DC) /* {{{ */
{
zend_op *opline;

View File

@ -45,3 +45,7 @@ void xc_zend_constant_ctor(zend_constant *c);
void xc_zend_constant_dtor(zend_constant *c);
void xc_copy_internal_zend_constants(HashTable *target, HashTable *source);
#endif
#ifndef ZEND_COMPILE_DELAYED_BINDING
int xc_do_early_binding(zend_op_array *op_array, HashTable *class_table, int oplineno TSRMLS_DC);
#endif