mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00

Normalization include: - Use dnl for everything that can be ommitted when configure is built in favor of the shell comment character # which is visible in the output. - Line length normalized to 80 columns - Dots for most of the one line sentences - Macro definitions include similar pattern header comments now
13 lines
462 B
Text
13 lines
462 B
Text
PHP_ARG_ENABLE([filter],
|
|
[whether to enable input filter support],
|
|
[AS_HELP_STRING([--disable-filter],
|
|
[Disable input filter support])],
|
|
[yes])
|
|
|
|
if test "$PHP_FILTER" != "no"; then
|
|
PHP_NEW_EXTENSION(filter, filter.c sanitizing_filters.c logical_filters.c callback_filter.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
|
|
PHP_SUBST(FILTER_SHARED_LIBADD)
|
|
|
|
PHP_INSTALL_HEADERS([ext/filter/php_filter.h])
|
|
PHP_ADD_EXTENSION_DEP(filter, pcre)
|
|
fi
|