/PHP-7.0/ext/readline/ |
H A D | config.m4 | 5 PHP_ARG_WITH(libedit,for libedit readline replacement, 9 PHP_ARG_WITH(readline,for readline support, 10 [ --with-readline[=DIR] Include readline support (CLI/CGI only)]) 18 test -f $i/include/readline/readline.h && READLINE_DIR=$i && break 22 AC_MSG_ERROR(Please reinstall readline - I cannot find readline.h) 40 PHP_CHECK_LIBRARY(readline, readline, 44 AC_MSG_ERROR(readline library not found) 49 PHP_CHECK_LIBRARY(readline, rl_pending_input, 56 PHP_CHECK_LIBRARY(readline, rl_callback_read_char, 94 PHP_CHECK_LIBRARY(edit, readline, [all …]
|
H A D | readline.c | 44 PHP_FUNCTION(readline); 69 PHP_MINIT_FUNCTION(readline); 72 PHP_MINFO_FUNCTION(readline); 158 PHP_MINIT(readline), 159 PHP_MSHUTDOWN(readline), 161 PHP_RSHUTDOWN(readline), 162 PHP_MINFO(readline), 168 ZEND_GET_MODULE(readline) 171 PHP_MINIT_FUNCTION(readline) in PHP_MINIT_FUNCTION() argument 213 PHP_FUNCTION(readline) in PHP_FUNCTION() argument [all …]
|
H A D | README.libedit | 1 This library can be built with libedit - non-GPL drop-in readline replacement.
|
/PHP-7.0/ext/readline/tests/ |
H A D | readline_write_history_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip"); 5 if (READLINE_LIB == "libedit") die("skip readline only"); 10 $name = tempnam('/tmp', 'readline.tmp');
|
H A D | libedit_write_history_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip"); 10 $name = tempnam('/tmp', 'readline.tmp');
|
H A D | readline_read_history_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_list_history')) die("skip"); … 8 $name = tempnam('/tmp', 'readline.tmp');
|
H A D | readline_callback_handler_remove_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_callback_handler_remove')) di… 5 if (READLINE_LIB == "libedit") die("skip readline only");
|
H A D | readline_callback_handler_install_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_callback_handler_install')) d… 5 if (READLINE_LIB == "libedit") die("skip readline only");
|
H A D | readline_info_001.phpt | 4 <?php if (!extension_loaded("readline")) die("skip"); 5 if (READLINE_LIB == "libedit") die("skip readline only");
|
H A D | bug72538.phpt | 4 <?php if (!extension_loaded("readline")) die("skip");
|
H A D | bug69054.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip"); ?>
|
H A D | readline_clear_history_001.phpt | 4 <?php if (!extension_loaded("readline")) die("skip"); ?>
|
H A D | readline_list_history_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_list_history')) die("skip"); …
|
H A D | readline_read_history_error_001.phpt | 6 <?php if (!extension_loaded("readline") || !function_exists('readline_read_history') || READLINE_LI…
|
H A D | libedit_callback_handler_remove_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_callback_handler_remove')) di…
|
H A D | readline_completion_function_001.phpt | 4 <?php if (!extension_loaded("readline")) die("skip"); ?>
|
H A D | readline_add_history_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_list_history')) die("skip"); …
|
H A D | libedit_callback_handler_install_001.phpt | 4 <?php if (!extension_loaded("readline") || !function_exists('readline_callback_handler_install')) d…
|
H A D | libedit_info_001.phpt | 4 <?php if (!extension_loaded("readline")) die("skip");
|
/PHP-7.0/Zend/tests/ |
H A D | bug40236.phpt | 6 if (extension_loaded("readline")) die("skip Test doesn't support readline");
|
/PHP-7.0/sapi/cli/tests/ |
H A D | bug64529.phpt | 8 if (!extension_loaded("readline") || !readline_info("done")) { 9 die("skip readline support required"); 22 if (extension_loaded("readline")) {
|
H A D | 016.phpt | 2 CLI -a and readline 6 if (!extension_loaded('readline') || readline_info('done') === NULL) { 7 die ("skip need readline support");
|
H A D | 017.phpt | 6 if (!extension_loaded('readline') || readline_info('done') !== NULL) { 7 die ("skip need readline support using libedit");
|
/PHP-7.0/sapi/phpdbg/ |
H A D | README.md | 21 - Optional readline Support - Comfortable Terminal Operation 48 **Note:** PHP must be configured with the switch --with-readline for phpdbg to support history, aut…
|
/PHP-7.0/travis/ |
H A D | compile.sh | 45 --with-readline \
|