Jani Taskinen
33bcc088ca
MFH:- Fixed bug #48256 (Crash due to double-linking of history.o)
2009-05-14 13:43:52 +00:00
Sebastian Bergmann
ef49b9a8de
MFH: Bump copyright year, 3 of 3.
2008-12-31 11:17:49 +00:00
Felipe Pena
c22036851a
- Missing SKIPIF :(
2008-11-21 22:56:20 +00:00
Felipe Pena
958fcd4c65
- Fixed tests
2008-11-21 22:50:22 +00:00
Felipe Pena
572b3f83a3
- MFH: Fixed memory leak in readline_callback_handler_remove()
2008-11-21 22:48:27 +00:00
Felipe Pena
f358f96deb
- New tests
2008-11-21 21:44:32 +00:00
Felipe Pena
d5e2d221cd
- Fix test
2008-11-21 21:03:47 +00:00
Felipe Pena
bec4b5a45e
- New tests
2008-11-21 21:01:23 +00:00
Felipe Pena
22851007ca
- MFH: Fixed memory leaks in readline_completion_function()
2008-11-20 22:26:32 +00:00
Ilia Alshanetsky
aea970fbc2
MFB: Fixed memory leak inside readline_callback_handler_install() function
2008-11-16 18:01:25 +00:00
Felipe Pena
56ed148d64
- MFB: Fixed mem. leak
2008-09-10 13:48:14 +00:00
Sebastian Bergmann
d9f3a1305f
MFH: Bump copyright year, 2 of 2.
2007-12-31 07:20:42 +00:00
Ilia Alshanetsky
c92668e768
Fixed a memory leak inside readline_completion_function() on non-callable
...
callback.
2007-02-12 01:23:17 +00:00
Sebastian Bergmann
4223aa4d5e
MFH: Bump year.
2007-01-01 09:36:18 +00:00
Nuno Lopes
ae77214f7f
fix gcc warning
2006-09-04 18:59:01 +00:00
foobar
5bd93221a8
bump year and license version
2006-01-01 12:51:34 +00:00
foobar
3e669bc950
MFH: nuke php3 legacy
2005-12-06 02:28:41 +00:00
foobar
52e1590285
MFH
2005-11-28 23:04:01 +00:00
foobar
26b8b65c18
MFH: - Fixed bug #35409 (undefined reference to 'rl_completion_matches').
2005-11-28 16:51:16 +00:00
foobar
7b073bbad8
- Make sure --with-readline is used only when --with-libedit is not used.
2005-11-18 15:07:39 +00:00
foobar
23e671a51e
- Bumber up year
2005-08-03 14:08:58 +00:00
foobar
a20383ba06
- Unify the "configure --help" texts
2005-05-29 23:17:16 +00:00
Ilia Alshanetsky
d5847b9cf7
Fixed compiler warning.
2005-04-12 16:41:42 +00:00
Ilia Alshanetsky
779edcb01d
Proper fix for bug #31796 .
2005-02-04 00:21:50 +00:00
Ilia Alshanetsky
5879c5cf21
Fixed bug #31796 (readline completion handler does not handle empty return
...
values).
2005-02-03 22:45:36 +00:00
Joe Orton
2685ca935f
Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/lib
...
to support multi-ABI platforms.
2004-11-03 14:32:52 +00:00
Wez Furlong
429b37d750
compile fix from Timm
2004-09-26 13:52:09 +00:00
Wez Furlong
9085689d6f
standardize the callback support to allow array($obj, 'method') callbacks.
...
Add a couple of utility functions.
2004-09-17 11:26:43 +00:00
Wez Furlong
bbd6dec20c
Add support for the readline callback interface, allowing you to interleave
...
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();
}
}
2004-08-24 12:52:07 +00:00
Derick Rethans
0bfb0fad92
- No tabs here please
2004-08-24 12:28:46 +00:00
Wez Furlong
5ed8e63591
use dependent libs while probing for functions
2004-08-24 12:06:37 +00:00
foobar
ccfc46b0aa
- Happy new year and PHP 5 for rest of the files too..
...
# Should the LICENSE and Zend/LICENSE dates be updated too?
2004-01-08 17:33:29 +00:00
Andi Gutmans
dbeb4158d2
- A belated happy holidays and PHP 5
2004-01-08 08:18:22 +00:00
foobar
dc080a5db6
- Always look into /usr/local before /usr
...
- Added breaks to make sure the preferred value is used.
2003-10-01 02:53:23 +00:00
Ilia Alshanetsky
526a3d9ce2
Always prefer user specified paths over the default /usr /usr/local.
...
This may fix compilation problems with on systems with multiple copies of
the same library.
2003-09-30 22:36:43 +00:00
Andrey Hristov
5fcc682ebc
proto fixes
2003-07-19 19:23:34 +00:00
James Cox
f68c7ff249
updating license information in the headers.
2003-06-10 20:04:29 +00:00
foobar
fccbb1431b
- There's no point in allowing using both --with-readline and --with-libedit
...
the same time. Prefer --with-readline.
- Use PHP_ADD_LIBRARY when there is no path available.
2003-02-11 03:24:30 +00:00
Sebastian Bergmann
b506f5c8f8
Bump year.
2002-12-31 16:08:15 +00:00
CHAILLAN Nicolas
2838df58fb
Very little fixes
2002-11-08 03:05:19 +00:00
Jan Lehnardt
6b3234f3d4
- fix build on FreeBSD, verified by thies.
2002-10-09 18:59:15 +00:00
foobar
b9d4067001
Fix typo.
2002-08-22 00:34:07 +00:00
Hartmut Holzgraefe
10811cd0d8
getting rid of the warn_not_available alias
2002-03-22 01:10:31 +00:00
jim winstead
d3400b2b5f
the 'setup' script was removed more than two years ago.
...
these can be safely removed from the 4.2 branch, too.
2002-03-16 00:21:40 +00:00
Sascha Schumann
283b860c58
php_new_extension
2002-03-12 16:53:19 +00:00
Sebastian Bergmann
90613d2282
Maintain headers.
2002-02-28 08:29:35 +00:00
Thies C. Arntzen
4526dd2078
remove some crap
2002-02-01 14:02:49 +00:00
Edin Kadribasic
f5790b0a7c
Modified the build system to make certain extensions (pcntl, ncurses,
...
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.
2002-01-20 02:30:18 +00:00
foobar
f50277f003
whitespace
2002-01-09 02:06:32 +00:00
Hartmut Holzgraefe
ec89317ff2
check for library existance before adding them
2002-01-04 12:27:01 +00:00