diff options
| author | Ben Fuhrmannek | 2016-02-24 00:36:35 +0100 |
|---|---|---|
| committer | Ben Fuhrmannek | 2016-02-24 00:36:35 +0100 |
| commit | 346455c6b5716c8ce095235428614e15c0adf13e (patch) | |
| tree | aaa648869e88287ed34c6d36cc06474d062b4b32 /config.m4 | |
| parent | 35b7c9a0e3f8a0daf1718a8ba9889a2aec24dc84 (diff) | |
cookie encryption
Diffstat (limited to 'config.m4')
| -rw-r--r-- | config.m4 | 11 |
1 files changed, 6 insertions, 5 deletions
| @@ -1,16 +1,17 @@ | |||
| 1 | dnl $Id$ | 1 | dnl $Id$ |
| 2 | dnl config.m4 for extension suhosin7 | 2 | dnl config.m4 for extension suhosin7 |
| 3 | 3 | ||
| 4 | PHP_ARG_ENABLE(suhosin, whether to enable suhosin support, | 4 | PHP_ARG_ENABLE(suhosin7, whether to enable suhosin support, |
| 5 | [ --enable-suhosin Enable suhosin support]) | 5 | [ --enable-suhosin7 Enable suhosin support]) |
| 6 | 6 | ||
| 7 | if test "$PHP_SUHOSIN" != "no"; then | 7 | if test "$PHP_SUHOSIN7" != "no"; then |
| 8 | PHP_NEW_EXTENSION(suhosin7, suhosin7.c aes.c ifilter.c memory_limit.c sha256.c treat_data.c log.c execute.c, $ext_shared,, -DZEND_ENABLE_STATIC_ACHE=1) | 8 | PHP_NEW_EXTENSION(suhosin7, suhosin7.c ifilter.c memory_limit.c aes.c treat_data.c log.c execute.c crypt.c cookiecrypt.c header.c, $ext_shared,, -DZEND_ENABLE_STATIC_ACHE=1) |
| 9 | PHP_ADD_EXTENSION_DEP(suhosin7, hash) | ||
| 9 | fi | 10 | fi |
| 10 | 11 | ||
| 11 | PHP_ARG_ENABLE(suhosin7-experimental, whether to enable experimental suhosin7 features, | 12 | PHP_ARG_ENABLE(suhosin7-experimental, whether to enable experimental suhosin7 features, |
| 12 | [ --enable-suhosin7-experimental Enable experimental suhosin7 features], no, no) | 13 | [ --enable-suhosin7-experimental Enable experimental suhosin7 features], no, no) |
| 13 | 14 | ||
| 14 | if test "$PHP_SUHOSIN7_EXPERIMENTAL" != "no"; then | 15 | if test "$PHP_SUHOSIN7_EXPERIMENTAL" != "no"; then |
| 15 | AC_DEFINE(SUHOSIN7_EXPERIMENTAL, 1, [Whether to enable experimental suhosin7 features]) | 16 | AC_DEFINE(SUHOSIN7_EXPERIMENTAL, 1, [Whether to enable experimental suhosin7 features]) |
| 16 | fi | 17 | fi |
