mirror of
https://github.com/php-win-ext/pecl-processing-rrd.git
synced 2026-03-24 00:52:13 +01:00
Fix PHP 8.5 building
This commit is contained in:
committed by
GitHub
parent
dbfb62e981
commit
fff45f6411
6
rrd.c
6
rrd.c
@@ -12,7 +12,11 @@
|
||||
#endif
|
||||
|
||||
#include "php.h"
|
||||
#include "ext/standard/php_smart_string.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"
|
||||
|
||||
|
||||
@@ -14,7 +14,11 @@
|
||||
|
||||
#include "php.h"
|
||||
#include "zend_exceptions.h"
|
||||
#include "ext/standard/php_smart_string.h"
|
||||
#if PHP_VERSION_ID < 70200
|
||||
#include <ext/standard/php_smart_string.h>
|
||||
#else
|
||||
#include <Zend/zend_smart_string.h>
|
||||
#endif
|
||||
|
||||
#include <rrd.h>
|
||||
|
||||
|
||||
@@ -14,7 +14,11 @@
|
||||
|
||||
#include "php.h"
|
||||
#include "zend_exceptions.h"
|
||||
#include "ext/standard/php_smart_string.h"
|
||||
#if PHP_VERSION_ID < 70200
|
||||
#include <ext/standard/php_smart_string.h>
|
||||
#else
|
||||
#include <Zend/zend_smart_string.h>
|
||||
#endif
|
||||
|
||||
#include <rrd.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user