diff options
Diffstat (limited to 'zip-php84.patch')
-rw-r--r-- | zip-php84.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/zip-php84.patch b/zip-php84.patch index e50b9e0..90127ce 100644 --- a/zip-php84.patch +++ b/zip-php84.patch @@ -184,3 +184,29 @@ index 274ddf1..97194ba 100644 "zip", ext_functions, PHP_MINIT(zip), +From 6734db54ab2c9176e58ae456b794657374688fba Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 21 Aug 2024 14:43:10 +0200 +Subject: [PATCH] fix init + +--- + php8/php_zip.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/php8/php_zip.c b/php8/php_zip.c +index 93d633b..9b388a6 100644 +--- a/php8/php_zip.c ++++ b/php8/php_zip.c +@@ -1149,8 +1149,8 @@ static const zend_module_dep zip_deps[] = { + /* {{{ zip_module_entry */ + zend_module_entry zip_module_entry = { + STANDARD_MODULE_HEADER_EX, NULL, +- "zip", + zip_deps, ++ "zip", + ext_functions, + PHP_MINIT(zip), + PHP_MSHUTDOWN(zip), +-- +2.46.0 + |