summaryrefslogtreecommitdiffstats
path: root/2.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-03-27 09:14:57 +0100
committerRemi Collet <remi@php.net>2026-03-27 09:14:57 +0100
commitb13b8a4a1dce582d6f2c5011ce84babf12899755 (patch)
tree661c7517994da5827e7e1a5c908b37bf3acacbbb /2.patch
parent190a6a9995b27f188029db72d18350dcd3854209 (diff)
Update to 1.1.1HEADmaster
drop patch merged upstream drop pear/pecl dependency sources from github
Diffstat (limited to '2.patch')
-rw-r--r--2.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/2.patch b/2.patch
deleted file mode 100644
index 69a001d..0000000
--- a/2.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 369e87e7469fd3e30bf46cff9f12f0d5bfc9e611 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Fri, 4 Sep 2020 14:47:29 +0200
-Subject: [PATCH] fix for PHP 8
-
----
- ssdeep.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/ssdeep.c b/ssdeep.c
-index 00e91e5..4dee7e2 100644
---- a/ssdeep.c
-+++ b/ssdeep.c
-@@ -48,6 +48,15 @@
- #include "php_ssdeep.h"
- #include <fuzzy.h>
-
-+/* For PHP 8 */
-+#ifndef TSRMLS_D
-+#define TSRMLS_D void
-+#define TSRMLS_DC
-+#define TSRMLS_C
-+#define TSRMLS_CC
-+#define TSRMLS_FETCH()
-+#endif
-+
- /* True global resources - no need for thread safety here */
- ZEND_BEGIN_ARG_INFO_EX(arginfo_ssdeep_fuzzy_hash, 0, 0, 1)
- ZEND_ARG_INFO(0, to_hash)