diff options
| author | Marcus Boerger <helly@php.net> | 2003-07-08 23:11:36 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2003-07-08 23:11:36 +0000 |
| commit | 79ac007d20bd80b40d8ac70d996888b3c9c50847 (patch) | |
| tree | afb7d4d887890a3c52226b82d31dca5fc5b6bbc1 | |
| parent | d9de39ec1663e009c656537fff116708da4a5e70 (diff) | |
| download | php-git-79ac007d20bd80b40d8ac70d996888b3c9c50847.tar.gz | |
Fix configure options
| -rwxr-xr-x | ext/spl/config.m4 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/spl/config.m4 b/ext/spl/config.m4 index dcb58626ec..195a193dc5 100755 --- a/ext/spl/config.m4 +++ b/ext/spl/config.m4 @@ -2,22 +2,22 @@ dnl $Id$ dnl config.m4 for extension SPL PHP_ARG_ENABLE(spl, enable SPL suppport, -[ --enable-spl Enable Standard PHP Library]) +[ --disable-spl Enable Standard PHP Library], yes) dnl first enable/disable all hooks -PHP_ARG_ENABLE(spl, enable all hooks, +PHP_ARG_ENABLE(spl-hook-all, enable all hooks, [ --enable-spl-hook-all SPL: Enable all hooks]) dnl now all single enable/disable for hooks -PHP_ARG_ENABLE(spl, enable hook on foreach, +PHP_ARG_ENABLE(spl-foreach, enable hook on foreach, [ --disable-spl-foreach SPL: Disable hook on forach], yes) -PHP_ARG_ENABLE(spl, enable hook on array read, +PHP_ARG_ENABLE(spl-array-read, enable hook on array read, [ --enable-spl-array-read SPL: Enable hook on array read]) -PHP_ARG_ENABLE(spl, enable hook on array write, +PHP_ARG_ENABLE(spl-array-write, enable hook on array write, [ --enable-spl-array-write SPL: Enable hook on array write (+read)]) dnl last do checks on hooks |
