diff options
author | Joe Watkins <krakjoe@php.net> | 2019-03-28 07:34:45 +0100 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2019-03-28 07:34:45 +0100 |
commit | b7442f1bb81303d3211844445f69d4a03565aa39 (patch) | |
tree | c6fcdef5543626b1127167729c1f6abcd514cffa | |
parent | 79f046f89e187312cec3715bffc1a8b101f57531 (diff) | |
download | php-git-b7442f1bb81303d3211844445f69d4a03565aa39.tar.gz |
fix build: readline support must be disabled by default in phpdbg
-rw-r--r-- | sapi/phpdbg/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/config.m4 b/sapi/phpdbg/config.m4 index d6765e1b19..3cdd90495a 100644 --- a/sapi/phpdbg/config.m4 +++ b/sapi/phpdbg/config.m4 @@ -12,7 +12,7 @@ PHP_ARG_ENABLE(phpdbg-debug, for phpdbg debug build, [ --enable-phpdbg-debug Build phpdbg in debug mode], no, no) PHP_ARG_ENABLE(phpdbg-readline, for phpdbg readline support, -[ --enable-phpdbg-readline Enable readline support in phpdbg (depends on static ext/readline)], yes, yes) +[ --enable-phpdbg-readline Enable readline support in phpdbg (depends on static ext/readline)], no, no) if test "$BUILD_PHPDBG" = "" && test "$PHP_PHPDBG" != "no"; then AC_HEADER_TIOCGWINSZ |