From 33bff4308fff6cd4e4283afb6486db4943c0344b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 5 Mar 2012 14:02:17 +0100 Subject: [PATCH] php5: use zend_function_entry, for compatibility with PHP 5.4 --- bindings/php5/wrapper_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/php5/wrapper_source.py b/bindings/php5/wrapper_source.py index 7148fd9c..7ec9fba8 100644 --- a/bindings/php5/wrapper_source.py +++ b/bindings/php5/wrapper_source.py @@ -508,7 +508,7 @@ PHP_MSHUTDOWN_FUNCTION(lasso) def generate_functions_list(self): print >> self.fd, '''\ -static function_entry lasso_functions[] = {''' +static zend_function_entry lasso_functions[] = {''' for m in self.functions_list: print >> self.fd, ' PHP_FE(%s, NULL)' % m print >> self.fd, '''\