diff options
author | Ondřej Surý <ondrej@sury.org> | 2014-07-02 13:10:19 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2014-07-02 13:10:19 +0200 |
commit | 09ed144817606a3a835391b12455e6d9cb3a0ae2 (patch) | |
tree | 1284c43d38c82704eada3d721265b96ae8b4aee3 /sapi/phpdbg/phpdbg_prompt.c | |
parent | 60d44b592c4c4fdcbbf92db2882a97a9cc54713c (diff) | |
download | php-09ed144817606a3a835391b12455e6d9cb3a0ae2.tar.gz |
New upstream version 5.6.0~rc2+dfsgupstream/5.6.0_rc2+dfsg
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_prompt.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c index 5379e7758..d91ef3f3f 100644 --- a/sapi/phpdbg/phpdbg_prompt.c +++ b/sapi/phpdbg/phpdbg_prompt.c @@ -732,6 +732,11 @@ PHPDBG_COMMAND(print) /* {{{ */ #else phpdbg_writeln("Readline\tno"); #endif +#ifdef HAVE_LIBEDIT + phpdbg_writeln("Libedit\t\tyes"); +#else + phpdbg_writeln("Libedit\t\tno"); +#endif phpdbg_writeln("Exec\t\t%s", PHPDBG_G(exec) ? PHPDBG_G(exec) : "none"); phpdbg_writeln("Compiled\t%s", PHPDBG_G(ops) ? "yes" : "no"); |