From fb7e80b10a95c2b06ef9f9e155f7299017b9555e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 18 Jan 2021 09:42:12 +0100 Subject: update to 1.1.3 --- xmldiff-php8.patch | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 xmldiff-php8.patch (limited to 'xmldiff-php8.patch') diff --git a/xmldiff-php8.patch b/xmldiff-php8.patch deleted file mode 100644 index 0d9cabb..0000000 --- a/xmldiff-php8.patch +++ /dev/null @@ -1,43 +0,0 @@ -Index: php_xmldiff.h -=================================================================== ---- php_xmldiff.h (révision 350541) -+++ php_xmldiff.h (copie de travail) -@@ -147,6 +147,14 @@ - examples in any other php module directory. - */ - -+#ifndef TSRMLS_DC -+#define TSRMLS_D void -+#define TSRMLS_DC -+#define TSRMLS_C -+#define TSRMLS_CC -+#define TSRMLS_FETCH() -+#endif -+ - #ifdef ZTS - #define XMLDIFF_G(v) TSRMG(xmldiff_globals_id, zend_xmldiff_globals *, v) - #else -Index: xmldiff.cpp -=================================================================== ---- xmldiff.cpp (révision 350541) -+++ xmldiff.cpp (copie de travail) -@@ -62,6 +62,10 @@ - /* }}} */ - - /* {{{ arginfo */ -+ZEND_BEGIN_ARG_INFO_EX(XMLDiff_construct, 0, 0, 0) -+ ZEND_ARG_INFO(0, nsurl) -+ZEND_END_ARG_INFO() -+ - ZEND_BEGIN_ARG_INFO_EX(XMLDiff_diff, 0, 0, 2) - ZEND_ARG_INFO(0, from) - ZEND_ARG_INFO(0, to) -@@ -75,7 +79,7 @@ - - /* {{{ xmldiff_methods[] */ - const zend_function_entry XMLDiffBase_methods[] = { -- PHP_ME(XMLDiffBase, __construct, NULL, ZEND_ACC_PUBLIC) -+ PHP_ME(XMLDiffBase, __construct, XMLDiff_construct, ZEND_ACC_PUBLIC) - PHP_ME(XMLDiffBase, diff, XMLDiff_diff, ZEND_ACC_PUBLIC | ZEND_ACC_ABSTRACT) - PHP_ME(XMLDiffBase, merge, XMLDiff_merge, ZEND_ACC_PUBLIC | ZEND_ACC_ABSTRACT) - PHP_FE_END -- cgit