summaryrefslogtreecommitdiff
path: root/ext/readline
Commit message (Collapse)AuthorAgeFilesLines
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+13
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-13/+0
|
* - Fixed mem. leakFelipe Pena2008-09-101-0/+1
|
* - MFH: Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-2/+2
|
* - Added arginfoFelipe Pena2008-07-141-14/+81
|
* - New parameter parsing APIFelipe Pena2008-06-251-57/+39
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-312-2/+2
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* Fixed a memory leak inside readline_completion_function() on non-callableIlia Alshanetsky2007-02-121-0/+1
| | | | | callback.
* MFH: Bump year.Sebastian Bergmann2007-01-012-2/+2
|
* fix gcc warningNuno Lopes2006-09-041-1/+1
|
* bump year and license versionfoobar2006-01-012-6/+6
|
* MFH: nuke php3 legacyfoobar2005-12-061-3/+3
|
* MFHfoobar2005-11-281-1/+1
|
* MFH: - Fixed bug #35409 (undefined reference to 'rl_completion_matches').foobar2005-11-282-4/+10
|
* - Make sure --with-readline is used only when --with-libedit is not used.foobar2005-11-181-2/+4
|
* - Bumber up yearfoobar2005-08-032-2/+2
|
* - Unify the "configure --help" textsfoobar2005-05-291-2/+2
|
* Fixed compiler warning.Ilia Alshanetsky2005-04-121-5/+5
|
* Proper fix for bug #31796 .Ilia Alshanetsky2005-02-041-2/+8
|
* Fixed bug #31796 (readline completion handler does not handle empty returnIlia Alshanetsky2005-02-031-1/+1
| | | | | values).
* Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/libJoe Orton2004-11-031-7/+7
| | | | | to support multi-ABI platforms.
* compile fix from TimmWez Furlong2004-09-261-1/+1
|
* standardize the callback support to allow array($obj, 'method') callbacks.Wez Furlong2004-09-171-36/+63
| | | | | Add a couple of utility functions.
* Add support for the readline callback interface, allowing you to interleaveWez Furlong2004-08-242-0/+105
| | | | | | | | | | | | | | | | | | | | | | | | | IO and user input. Sample script: <?php dl("readline.so"); function handle_user_input($line) { echo "You typed: '$line'\n"; if ($line == 'exit') exit; } readline_callback_handler_install('type! > ', 'handle_user_input'); while (true) { $n = stream_select($r = array(STDIN), $w = null, $e = null, null); if ($n && in_array(STDIN, $r)) { readline_callback_read_char(); } }
* - No tabs here pleaseDerick Rethans2004-08-241-2/+2
|
* use dependent libs while probing for functionsWez Furlong2004-08-241-2/+5
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* - Always look into /usr/local before /usrfoobar2003-10-011-10/+4
| | | | | - Added breaks to make sure the preferred value is used.
* Always prefer user specified paths over the default /usr /usr/local.Ilia Alshanetsky2003-09-301-2/+2
| | | | | | This may fix compilation problems with on systems with multiple copies of the same library.
* proto fixesAndrey Hristov2003-07-191-5/+5
|
* updating license information in the headers.James Cox2003-06-102-6/+6
|
* - There's no point in allowing using both --with-readline and --with-libeditfoobar2003-02-111-6/+8
| | | | | | the same time. Prefer --with-readline. - Use PHP_ADD_LIBRARY when there is no path available.
* Bump year.Sebastian Bergmann2002-12-312-2/+2
|
* Very little fixesCHAILLAN Nicolas2002-11-081-5/+5
|
* - fix build on FreeBSD, verified by thies.Jan Lehnardt2002-10-091-2/+4
|
* Fix typo.foobar2002-08-221-1/+1
|
* getting rid of the warn_not_available aliasHartmut Holzgraefe2002-03-221-2/+0
|
* the 'setup' script was removed more than two years ago.jim winstead2002-03-161-3/+0
| | | | | these can be safely removed from the 4.2 branch, too.
* php_new_extensionSascha Schumann2002-03-122-9/+2
|
* Maintain headers.Sebastian Bergmann2002-02-282-2/+2
|
* remove some crapThies C. Arntzen2002-02-011-5/+0
|
* Modified the build system to make certain extensions (pcntl, ncurses,Edin Kadribasic2002-01-201-8/+4
| | | | | | | pcntl) only with cgi/cli sapi's. This was done by adding 3rd optional parameter to PHP_EXTENSION macro which should be set to "cli" if the extension only makes sense for that class of api's.
* whitespacefoobar2002-01-091-14/+25
|
* check for library existance before adding themHartmut Holzgraefe2002-01-041-6/+25
|
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* Unified the configure messages.foobar2001-11-301-5/+4
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-30/+30
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.