diff options
author | Remi Collet <remi@remirepo.net> | 2021-10-06 06:58:30 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2021-10-06 06:58:30 +0200 |
commit | 5d4802bad15d8875f3e7cc570e02e4e3aa2e1ef4 (patch) | |
tree | dfc530a737306b0ff103a88bd42450519f038300 /excimer-info.patch | |
parent | be2cbc1bc1736f5c0233b2f26bdd2e75d317d739 (diff) |
update to 1.0.1
drop patch merged upstream
add patch for PHP 8.1 from
https://github.com/wikimedia/php-excimer/pull/2
display extension version in phpinfo from
https://github.com/wikimedia/php-excimer/pull/3
enable ZTS build
Diffstat (limited to 'excimer-info.patch')
-rw-r--r-- | excimer-info.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/excimer-info.patch b/excimer-info.patch new file mode 100644 index 0000000..3cba206 --- /dev/null +++ b/excimer-info.patch @@ -0,0 +1,21 @@ +From a70fe7ae6ca3c1c621e902fdd43a2f51e1537c77 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 6 Oct 2021 06:17:21 +0200 +Subject: [PATCH] add ext version in phpinfo + +--- + excimer.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/excimer.c b/excimer.c +index 347bdd8..110f0a2 100644 +--- a/excimer.c ++++ b/excimer.c +@@ -560,6 +560,7 @@ static PHP_MINFO_FUNCTION(excimer) + { + php_info_print_table_start(); + php_info_print_table_header(2, "excimer support", "enabled"); ++ php_info_print_table_row(2, "excimer version", PHP_EXCIMER_VERSION); + php_info_print_table_end(); + } + /* }}} */ |