Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Revert ZEND_BEGIN_ARG_INFO change | Felipe Pena | 2008-11-02 | 1 | -0/+13 |
| | |||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-10-24 | 1 | -13/+0 |
| | |||||
* | - Fixed mem. leak | Felipe Pena | 2008-09-10 | 1 | -0/+1 |
| | |||||
* | - MFH: Added parameter TSRMLS_DC in zend_is_callable() | Felipe Pena | 2008-08-02 | 1 | -2/+2 |
| | |||||
* | - Added arginfo | Felipe Pena | 2008-07-14 | 1 | -14/+81 |
| | |||||
* | - New parameter parsing API | Felipe Pena | 2008-06-25 | 1 | -57/+39 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 2 | -2/+2 |
| | |||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -1/+1 |
| | |||||
* | Fixed a memory leak inside readline_completion_function() on non-callable | Ilia Alshanetsky | 2007-02-12 | 1 | -0/+1 |
| | | | | | callback. | ||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 2 | -2/+2 |
| | |||||
* | fix gcc warning | Nuno Lopes | 2006-09-04 | 1 | -1/+1 |
| | |||||
* | bump year and license version | foobar | 2006-01-01 | 2 | -6/+6 |
| | |||||
* | MFH: nuke php3 legacy | foobar | 2005-12-06 | 1 | -3/+3 |
| | |||||
* | MFH | foobar | 2005-11-28 | 1 | -1/+1 |
| | |||||
* | MFH: - Fixed bug #35409 (undefined reference to 'rl_completion_matches'). | foobar | 2005-11-28 | 2 | -4/+10 |
| | |||||
* | - Make sure --with-readline is used only when --with-libedit is not used. | foobar | 2005-11-18 | 1 | -2/+4 |
| | |||||
* | - Bumber up year | foobar | 2005-08-03 | 2 | -2/+2 |
| | |||||
* | - Unify the "configure --help" texts | foobar | 2005-05-29 | 1 | -2/+2 |
| | |||||
* | Fixed compiler warning. | Ilia Alshanetsky | 2005-04-12 | 1 | -5/+5 |
| | |||||
* | Proper fix for bug #31796 . | Ilia Alshanetsky | 2005-02-04 | 1 | -2/+8 |
| | |||||
* | Fixed bug #31796 (readline completion handler does not handle empty return | Ilia Alshanetsky | 2005-02-03 | 1 | -1/+1 |
| | | | | | values). | ||||
* | Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/lib | Joe Orton | 2004-11-03 | 1 | -7/+7 |
| | | | | | to support multi-ABI platforms. | ||||
* | compile fix from Timm | Wez Furlong | 2004-09-26 | 1 | -1/+1 |
| | |||||
* | standardize the callback support to allow array($obj, 'method') callbacks. | Wez Furlong | 2004-09-17 | 1 | -36/+63 |
| | | | | | Add a couple of utility functions. | ||||
* | Add support for the readline callback interface, allowing you to interleave | Wez Furlong | 2004-08-24 | 2 | -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 please | Derick Rethans | 2004-08-24 | 1 | -2/+2 |
| | |||||
* | use dependent libs while probing for functions | Wez Furlong | 2004-08-24 | 1 | -2/+5 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -2/+2 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | - A belated happy holidays and PHP 5 | Andi Gutmans | 2004-01-08 | 1 | -2/+2 |
| | |||||
* | - Always look into /usr/local before /usr | foobar | 2003-10-01 | 1 | -10/+4 |
| | | | | | - Added breaks to make sure the preferred value is used. | ||||
* | Always prefer user specified paths over the default /usr /usr/local. | Ilia Alshanetsky | 2003-09-30 | 1 | -2/+2 |
| | | | | | | This may fix compilation problems with on systems with multiple copies of the same library. | ||||
* | proto fixes | Andrey Hristov | 2003-07-19 | 1 | -5/+5 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 2 | -6/+6 |
| | |||||
* | - There's no point in allowing using both --with-readline and --with-libedit | foobar | 2003-02-11 | 1 | -6/+8 |
| | | | | | | the same time. Prefer --with-readline. - Use PHP_ADD_LIBRARY when there is no path available. | ||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 2 | -2/+2 |
| | |||||
* | Very little fixes | CHAILLAN Nicolas | 2002-11-08 | 1 | -5/+5 |
| | |||||
* | - fix build on FreeBSD, verified by thies. | Jan Lehnardt | 2002-10-09 | 1 | -2/+4 |
| | |||||
* | Fix typo. | foobar | 2002-08-22 | 1 | -1/+1 |
| | |||||
* | getting rid of the warn_not_available alias | Hartmut Holzgraefe | 2002-03-22 | 1 | -2/+0 |
| | |||||
* | the 'setup' script was removed more than two years ago. | jim winstead | 2002-03-16 | 1 | -3/+0 |
| | | | | | these can be safely removed from the 4.2 branch, too. | ||||
* | php_new_extension | Sascha Schumann | 2002-03-12 | 2 | -9/+2 |
| | |||||
* | Maintain headers. | Sebastian Bergmann | 2002-02-28 | 2 | -2/+2 |
| | |||||
* | remove some crap | Thies C. Arntzen | 2002-02-01 | 1 | -5/+0 |
| | |||||
* | Modified the build system to make certain extensions (pcntl, ncurses, | Edin Kadribasic | 2002-01-20 | 1 | -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. | ||||
* | whitespace | foobar | 2002-01-09 | 1 | -14/+25 |
| | |||||
* | check for library existance before adding them | Hartmut Holzgraefe | 2002-01-04 | 1 | -6/+25 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 2 | -4/+4 |
| | |||||
* | Unified the configure messages. | foobar | 2001-11-30 | 1 | -5/+4 |
| | |||||
* | * zend_module_entry change: apino, debug and zts are moved first, | Stig Bakken | 2001-10-11 | 1 | -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 Wolffelaar | 2001-09-25 | 1 | -30/+30 |
| | | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know. |