blob: b97783e32b55390eadf73322bc2720fa1d3e4a6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
dnl $Id$
dnl config.m4 for extension suhosin7
PHP_ARG_ENABLE(suhosin, whether to enable suhosin support,
[ --enable-suhosin Enable suhosin support])
if test "$PHP_SUHOSIN" != "no"; then
PHP_NEW_EXTENSION(suhosin7, suhosin7.c aes.c ifilter.c memory_limit.c sha256.c treat_data.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
fi
PHP_ARG_ENABLE(suhosin7-experimental, whether to enable experimental suhosin7 features,
[ --enable-suhosin7-experimental Enable experimental suhosin7 features], no, no)
if test "$PHP_SUHOSIN7_EXPERIMENTAL" != "no"; then
AC_DEFINE(SUHOSIN7_EXPERIMENTAL, 1, [Whether to enable experimental suhosin7 features])
fi
|