Lines Matching refs:readline
2 [for libedit readline replacement],
4 [Include libedit readline replacement (CLI/CGI only)])])
7 PHP_ARG_WITH([readline],
8 [for readline support],
9 [AS_HELP_STRING([[--with-readline[=DIR]]],
10 [Include readline support (CLI/CGI only)])])
12 dnl "register" the --with-readline option to prevent invalid "unknown
19 test -f $i/include/readline/readline.h && READLINE_DIR=$i && break
23 AC_MSG_ERROR(Please reinstall readline - I cannot find readline.h)
41 PHP_CHECK_LIBRARY(readline, readline,
43 PHP_ADD_LIBRARY_WITH_PATH(readline, $READLINE_DIR/$PHP_LIBDIR, READLINE_SHARED_LIBADD)
45 AC_MSG_ERROR(readline library not found)
50 PHP_CHECK_LIBRARY(readline, rl_pending_input,
52 AC_MSG_ERROR([invalid readline installation detected. Try --with-libedit instead.])
57 PHP_CHECK_LIBRARY(readline, rl_callback_read_char,
64 PHP_CHECK_LIBRARY(readline, rl_on_new_line,
71 PHP_CHECK_LIBRARY(readline, rl_completion_matches,
100 PHP_CHECK_LIBRARY(edit, readline,
103 AC_MSG_ERROR(edit library required by readline not found)
141 PHP_NEW_EXTENSION(readline, readline.c readline_cli.c, $ext_shared, cli, "-Wno-strict-prototypes")