Date: Thu Mar 20 17:50:24 CET 2008
User: Derick Rethans
Directory: xdebug
Log Message:
[0.25]
- Made this compile for everything < 5.3 again.
Modified files:
xdebug/xdebug.c (version: 1.422)
[FILE: /xdebug/xdebug.c]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.421
retrieving revision 1.422
diff -u -r1.421 -r1.422
--- xdebug/xdebug.c:1.421 Wed Mar 19 15:00:29 2008 GMT
+++ xdebug/xdebug.c Thu Mar 20 15:50:24 2008 GMT
@@ -775,7 +775,11 @@
}
/* Only enabled extended info when it is not disabled */
+#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 3) || PHP_MAJOR_VERSION >= 6
CG(compiler_options) = CG(compiler_options) | (XG(extended_info) ? ZEND_COMPILE_EXTENDED_INFO : 0);
+#else
+ CG(extended_info) = XG(extended_info);
+#endif
if (XG(default_enable)) {
zend_error_cb = new_error_cb;
Received on Thu Mar 20 2008 - 17:50:31 GMT
This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:03 BST