summaryrefslogtreecommitdiffstats
path: root/170.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-08-24 16:02:58 +0200
committerRemi Collet <remi@remirepo.net>2020-08-24 16:02:58 +0200
commitb0597590e8e346eb7f189549ba33f9804ab26710 (patch)
tree7ea045d89832ec7d02454bc7789989440e4a36f0 /170.patch
parent3c4cb0e6e47b844019d16ee85040291a1ac3adc0 (diff)
add patch for PHP 8 from https://github.com/zeromq/php-zmq/pull/216
Diffstat (limited to '170.patch')
-rw-r--r--170.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/170.patch b/170.patch
deleted file mode 100644
index 45cde0b..0000000
--- a/170.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 7c961507e24435680e445b90af0a465c98246d4d Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@famillecollet.com>
-Date: Mon, 1 Feb 2016 08:09:46 +0100
-Subject: [PATCH] Fix build with old GCC
-
----
- zmq_pollset.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/zmq_pollset.c b/zmq_pollset.c
-index 16dbdec..59f8c09 100644
---- a/zmq_pollset.c
-+++ b/zmq_pollset.c
-@@ -38,7 +38,7 @@
-
- /* {{{ typedef struct _php_zmq_pollset
- */
--typedef struct _php_zmq_pollset {
-+struct _php_zmq_pollset {
-
- zmq_pollitem_t *items;
- zend_string **keys;
-@@ -49,7 +49,7 @@ typedef struct _php_zmq_pollset {
- size_t alloc_size;
-
- zval errors;
--} php_zmq_pollset;
-+};
- /* }}} */
-
- static