summaryrefslogtreecommitdiff
path: root/databases/php-tarantool/files
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-07-09 00:21:26 +0800
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-07-09 00:21:26 +0800
commiteaebf4c3b33644d899a541383ec410a42e613de6 (patch)
tree1270a28c35fb6d04e1d2a224ba3aedaa63cb8af6 /databases/php-tarantool/files
parentdevel/p5-XS-Parse-Keyword: Fix *_DEPENDS (diff)
databases/php-tarantool: Update to 0.4.0
Changes: https://github.com/tarantool/tarantool-php/releases
Diffstat (limited to 'databases/php-tarantool/files')
-rw-r--r--databases/php-tarantool/files/patch-src-php_tarantool.h14
-rw-r--r--databases/php-tarantool/files/patch-src-tarantool.c15
-rw-r--r--databases/php-tarantool/files/patch-src-tarantool_exception.c13
-rw-r--r--databases/php-tarantool/files/patch-src-tarantool_msgpack.c13
-rw-r--r--databases/php-tarantool/files/patch-src-tarantool_network.c14
5 files changed, 0 insertions, 69 deletions
diff --git a/databases/php-tarantool/files/patch-src-php_tarantool.h b/databases/php-tarantool/files/patch-src-php_tarantool.h
deleted file mode 100644
index c43486477a9c..000000000000
--- a/databases/php-tarantool/files/patch-src-php_tarantool.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/php_tarantool.h.orig 2020-06-29 22:41:13 UTC
-+++ src/php_tarantool.h
-@@ -180,7 +180,11 @@ PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_
- PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_ioexception(void);
- PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_clienterror(void);
- PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_parsingexception(void);
-+#if PHP_MAJOR_VERSION >= 8
-+PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_exception_base(int root);
-+#else
- PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_exception_base(int root TSRMLS_DC);
-+#endif
-
- #ifdef ZTS
- # define TARANTOOL_G(v) TSRMG(tarantool_globals_id, zend_tarantool_globals *, v)
diff --git a/databases/php-tarantool/files/patch-src-tarantool.c b/databases/php-tarantool/files/patch-src-tarantool.c
deleted file mode 100644
index ef3aa0e55cc1..000000000000
--- a/databases/php-tarantool/files/patch-src-tarantool.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/tarantool.c.orig 2020-06-29 22:41:13 UTC
-+++ src/tarantool.c
-@@ -14,6 +14,12 @@
-
- #include "utils.h"
-
-+#if PHP_MAJOR_VERSION >= 8
-+#define TSRMLS_CC
-+#define TSRMLS_DC
-+#define TSRMLS_FETCH()
-+#endif
-+
- static int __tarantool_authenticate(tarantool_connection *obj);
- static void tarantool_stream_close(tarantool_connection *obj);
-
diff --git a/databases/php-tarantool/files/patch-src-tarantool_exception.c b/databases/php-tarantool/files/patch-src-tarantool_exception.c
deleted file mode 100644
index 177d221a3f68..000000000000
--- a/databases/php-tarantool/files/patch-src-tarantool_exception.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/tarantool_exception.c.orig 2020-06-29 22:41:13 UTC
-+++ src/tarantool_exception.c
-@@ -4,6 +4,10 @@
-
- #include "tarantool_exception.h"
-
-+#if PHP_MAJOR_VERSION >= 8
-+#define TSRMLS_DC
-+#endif
-+
- zend_class_entry *TarantoolException_ptr;
- zend_class_entry *TarantoolIOException_ptr;
- zend_class_entry *TarantoolClientError_ptr;
diff --git a/databases/php-tarantool/files/patch-src-tarantool_msgpack.c b/databases/php-tarantool/files/patch-src-tarantool_msgpack.c
deleted file mode 100644
index ad47e883931a..000000000000
--- a/databases/php-tarantool/files/patch-src-tarantool_msgpack.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/tarantool_msgpack.c.orig 2020-06-29 22:41:13 UTC
-+++ src/tarantool_msgpack.c
-@@ -5,6 +5,10 @@
-
- #include "third_party/msgpuck.h"
-
-+#if PHP_MAJOR_VERSION >= 8
-+#define TSRMLS_FETCH()
-+#endif
-+
- #ifndef HASH_KEY_NON_EXISTENT
- #define HASH_KEY_NON_EXISTENT HASH_KEY_NON_EXISTANT
- #endif /* HASH_KEY_NON_EXISTENT */
diff --git a/databases/php-tarantool/files/patch-src-tarantool_network.c b/databases/php-tarantool/files/patch-src-tarantool_network.c
deleted file mode 100644
index acacf9eb6def..000000000000
--- a/databases/php-tarantool/files/patch-src-tarantool_network.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/tarantool_network.c.orig 2020-06-29 22:41:13 UTC
-+++ src/tarantool_network.c
-@@ -11,6 +11,11 @@
- #include "php_tarantool.h"
- #include "tarantool_network.h"
-
-+#if PHP_MAJOR_VERSION >= 8
-+#define TSRMLS_CC
-+#define TSRMLS_FETCH()
-+#endif
-+
- void double_to_tv(double tm, struct timeval *tv) {
- tv->tv_sec = floor(tm);
- tv->tv_usec = floor((tm - floor(tm)) * pow(10, 6));