diff options
author | Remi Collet <remi@remirepo.net> | 2025-07-30 13:47:19 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-07-30 13:47:19 +0200 |
commit | 0a089b54fb3375aaac945e6940b1d47da9c1db8c (patch) | |
tree | c08bb9772655b27d323b5f496b09cfe8794af660 /rrd-php85.patch | |
parent | 3c6c75e517fe01eb0c2eacd256b66c6d5d172980 (diff) |
https://github.com/php/pecl-processing-rrd/pull/4
re-license spec file to CECILL-2.1
Diffstat (limited to 'rrd-php85.patch')
-rw-r--r-- | rrd-php85.patch | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/rrd-php85.patch b/rrd-php85.patch new file mode 100644 index 0000000..da89759 --- /dev/null +++ b/rrd-php85.patch @@ -0,0 +1,62 @@ +From dd4856dc89499a0141b1710e791f0e1096c7b244 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 30 Jul 2025 13:39:24 +0200 +Subject: [PATCH] use Zend/zend_smart_string.h + +--- + rrd.c | 4 ++++ + rrd_graph.c | 4 ++++ + rrd_update.c | 4 ++++ + 3 files changed, 12 insertions(+) + +diff --git a/rrd.c b/rrd.c +index ab19b41..ff51776 100644 +--- a/rrd.c ++++ b/rrd.c +@@ -12,7 +12,11 @@ + #endif + + #include "php.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_array.h" + #include "ext/standard/info.h" + +diff --git a/rrd_graph.c b/rrd_graph.c +index 96a47f4..0e43550 100644 +--- a/rrd_graph.c ++++ b/rrd_graph.c +@@ -14,7 +14,11 @@ + + #include "php.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 <rrd.h> + +diff --git a/rrd_update.c b/rrd_update.c +index 1fc4573..e21c778 100644 +--- a/rrd_update.c ++++ b/rrd_update.c +@@ -14,7 +14,11 @@ + + #include "php.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 <rrd.h> + +-- +2.50.1 + |