summaryrefslogtreecommitdiffstats
path: root/461.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-03-07 14:54:07 +0100
committerRemi Collet <remi@php.net>2022-03-07 14:54:07 +0100
commit3a2f49b39a3bdddca907bf3cab4be6956905a4aa (patch)
treee2af016c2e75c696d79e50d7cebfcf68bfdfbb9d /461.patch
parent98920b88052507ef2863fcce36365938cc0d1fa1 (diff)
update to 3.1.6-dev (2022-03-02)
Diffstat (limited to '461.patch')
-rw-r--r--461.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/461.patch b/461.patch
deleted file mode 100644
index 859907d..0000000
--- a/461.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 1b68fe77b9674e1f1da4fa0e8706e3a35f1eda03 Mon Sep 17 00:00:00 2001
-From: Dmitriy <dims.main@gmail.com>
-Date: Fri, 2 Oct 2020 10:53:28 +0300
-Subject: [PATCH] fix php 8.0 build
-
-fci.no_separation removed on php 8.0.
-https://github.com/php/php-src/commit/302933daea77663f5759b10accd1d0231393b24c
----
- php_memcached_server.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/php_memcached_server.c b/php_memcached_server.c
-index 4c0080e..870209c 100644
---- a/php_memcached_server.c
-+++ b/php_memcached_server.c
-@@ -63,7 +63,9 @@ long s_invoke_php_callback (php_memc_server_cb_t *cb, zval *params, ssize_t para
- cb->fci.retval = retval;
- cb->fci.params = params;
- cb->fci.param_count = param_count;
-+#if PHP_VERSION_ID < 80000
- cb->fci.no_separation = 1;
-+#endif
-
- if (zend_call_function(&(cb->fci), &(cb->fci_cache)) == FAILURE) {
- char *buf = php_memc_printable_func(&(cb->fci), &(cb->fci_cache));