1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Add pcre dependency as required to ext/filter (#15099)

This is configure phase dependency synced with already present Autotools
pcre dependency check.
This commit is contained in:
Peter Kokot
2024-07-24 23:30:57 +02:00
committed by GitHub
parent b0db5e76a0
commit 82e63a06e2

View File

@@ -4,5 +4,6 @@ ARG_ENABLE("filter", "Filter Support", "yes");
if (PHP_FILTER == "yes") {
EXTENSION("filter", "filter.c sanitizing_filters.c logical_filters.c callback_filter.c", PHP_FILTER_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
ADD_EXTENSION_DEP('filter', 'pcre');
PHP_INSTALL_HEADERS("ext/filter", "php_filter.h");
}