diff options
Diffstat (limited to '574.patch')
-rw-r--r-- | 574.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/574.patch b/574.patch new file mode 100644 index 0000000..128f348 --- /dev/null +++ b/574.patch @@ -0,0 +1,25 @@ +From b9fc8475be7239e7b144d41cd2ad79677c996ac2 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 30 Jul 2025 12:54:49 +0200 +Subject: [PATCH] use Zend/zend_smart_string.h + +--- + php_memcached_private.h | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/php_memcached_private.h b/php_memcached_private.h +index 2c22ecba..b7d2a5e1 100644 +--- a/php_memcached_private.h ++++ b/php_memcached_private.h +@@ -43,7 +43,11 @@ + #include <ext/standard/info.h> + #include <zend_extensions.h> + #include <zend_exceptions.h> ++#if PHP_VERSION_ID < 70200 + #include <ext/standard/php_smart_string.h> ++#else ++#include <Zend/zend_smart_string.h> ++#endif + #include <ext/standard/php_var.h> + #include <ext/standard/basic_functions.h> + |