diff options
author | Remi Collet <remi@remirepo.net> | 2021-09-29 07:25:27 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-09-29 07:25:27 +0200 |
commit | 942680bb4886369488b4594173b0e2191df8b1dc (patch) | |
tree | d5c3a1f8c500c6543d8342582aa8d9544bb598a2 /uploadprogress-arginfo.patch | |
parent | 34177af949fd90c03b8219f367f1bffc67b643d3 (diff) |
update to 1.1.4
run upstream test suite during build
drop patches merged upstream
Diffstat (limited to 'uploadprogress-arginfo.patch')
-rw-r--r-- | uploadprogress-arginfo.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/uploadprogress-arginfo.patch b/uploadprogress-arginfo.patch deleted file mode 100644 index 81cf86c..0000000 --- a/uploadprogress-arginfo.patch +++ /dev/null @@ -1,40 +0,0 @@ -From f14654d30953e4b699bf25a244923bbadc55f4f9 Mon Sep 17 00:00:00 2001 -From: Andy Postnikov <apostnikov@gmail.com> -Date: Fri, 21 Aug 2020 07:06:27 +0300 -Subject: [PATCH 1/3] Add arginfo to functions - ---- - uploadprogress.c | 16 ++++++++++++++-- - 1 file changed, 14 insertions(+), 2 deletions(-) - -diff --git a/uploadprogress.c b/uploadprogress.c -index 6f72a92..52b313d 100644 ---- a/uploadprogress.c -+++ b/uploadprogress.c -@@ -29,10 +29,22 @@ - #define TMPDIR "/tmp" - #endif - -+/* {{{ argument information */ -+ZEND_BEGIN_ARG_INFO_EX(arginfo_uploadprogress_get_info, 0, 0, 1) -+ ZEND_ARG_TYPE_INFO(0, identifier, IS_STRING, 0) -+ZEND_END_ARG_INFO() -+ -+ZEND_BEGIN_ARG_INFO_EX(arginfo_uploadprogress_get_contents, 0, 0, 2) -+ ZEND_ARG_TYPE_INFO(0, identifier, IS_STRING, 0) -+ ZEND_ARG_TYPE_INFO(0, fieldname, IS_STRING, 0) -+ ZEND_ARG_TYPE_INFO(0, maxlen, IS_LONG, 1) -+ZEND_END_ARG_INFO() -+/* }}} */ -+ - /* {{{ uploadprogress_functions[] */ - zend_function_entry uploadprogress_functions[] = { -- PHP_FE(uploadprogress_get_info, NULL) -- PHP_FE(uploadprogress_get_contents, NULL) -+ PHP_FE(uploadprogress_get_info, arginfo_uploadprogress_get_info) -+ PHP_FE(uploadprogress_get_contents, arginfo_uploadprogress_get_contents) - { NULL, NULL, NULL } - }; - /* }}} */ - - |