]> granicus.if.org Git - php/commitdiff
Merge branch 'PHP-7.3' into PHP-7.4
authorJoe Watkins <krakjoe@php.net>
Thu, 28 Mar 2019 06:35:33 +0000 (07:35 +0100)
committerJoe Watkins <krakjoe@php.net>
Thu, 28 Mar 2019 06:35:33 +0000 (07:35 +0100)
* PHP-7.3:
  fix build: readline support must be disabled by default in phpdbg

1  2 
sapi/phpdbg/config.m4

index 9abc9902249f05694c74ce2e65dc77ae6d706516,24bc557c8be5b92d37b33ece4f34e14a5f0d5030..f590dc619694583ec782dd0811f5fa744b50d78b
@@@ -1,27 -1,17 +1,27 @@@
  dnl config.m4 for sapi phpdbg
  
 -PHP_ARG_ENABLE(phpdbg, for phpdbg support,
 -[  --enable-phpdbg         Build phpdbg], yes, yes)
 -
 -PHP_ARG_ENABLE(phpdbg-webhelper, for phpdbg web SAPI support,
 -[  --enable-phpdbg-webhelper
 -                          Build phpdbg web SAPI support], no)
 -
 -PHP_ARG_ENABLE(phpdbg-debug, for phpdbg debug build,
 -[  --enable-phpdbg-debug   Build phpdbg in debug mode], no, no)
 +PHP_ARG_ENABLE([phpdbg],
 +  [for phpdbg support],
 +  [AS_HELP_STRING([--enable-phpdbg],
 +    [Build phpdbg])],
 +  [yes],
 +  [yes])
 +
 +PHP_ARG_ENABLE([phpdbg-webhelper],
 +  [for phpdbg web SAPI support],
 +  [AS_HELP_STRING([--enable-phpdbg-webhelper],
 +    [Build phpdbg web SAPI support])],
 +  [no])
 +
 +PHP_ARG_ENABLE([phpdbg-debug],
 +  [for phpdbg debug build],
 +  [AS_HELP_STRING([--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