From 187f6857df56cc0f7a7450b0730e90b6aebeab1b Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 18 Feb 2024 18:44:49 +0100 Subject: [PATCH] [skip ci] Update tidy.php excludes (#13425) - ext/bcmath/libbcmath removed, because it is forked and maintained in php-srx. There doesn't seem to be any maintained upstream libbcmath. - Added bundled ext/dom/lexbor. - Updated JIT bundled files for ext/opcache/jit/ir. --- scripts/dev/tidy.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/dev/tidy.php b/scripts/dev/tidy.php index 6f79cf98dcd..00e8c2bd042 100755 --- a/scripts/dev/tidy.php +++ b/scripts/dev/tidy.php @@ -22,8 +22,8 @@ $it = new RecursiveIteratorIterator( $excludes = [ // Bundled libraries / files. - 'ext/bcmath/libbcmath/', 'ext/date/lib/', + 'ext/dom/lexbor/', 'ext/fileinfo/data_file.c', 'ext/fileinfo/libmagic/', 'ext/gd/libgd/', @@ -32,9 +32,7 @@ $excludes = [ 'ext/hash/php_hash_whirlpool_tables.h', 'ext/mbstring/libmbfl/', 'ext/mbstring/unicode_data.h', - 'ext/opcache/jit/dynasm', - 'ext/opcache/jit/libudis86', - 'ext/opcache/jit/vtune', + 'ext/opcache/jit/ir', 'ext/pcre/pcre2lib/', 'ext/standard/html_tables/html_table_gen.php', 'sapi/cli/php_http_parser.c',