From dd4856dc89499a0141b1710e791f0e1096c7b244 Mon Sep 17 00:00:00 2001 From: Remi Collet 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 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 -- 2.50.1