9 lines
331 B
Plaintext
9 lines
331 B
Plaintext
/* config.m4 */
|
|
dnl Enable or disable dec_interceptor as a PHP extension
|
|
PHP_ARG_ENABLE(dec_interceptor, whether to enable dec_interceptor support,
|
|
[ --enable-dec_interceptor Enable dec_interceptor support])
|
|
|
|
if test "$PHP_DEC_INTERCEPTOR" != "no"; then
|
|
PHP_NEW_EXTENSION(dec_interceptor, dec_interceptor.c, $ext_shared)
|
|
fi
|