summaryrefslogtreecommitdiff
path: root/ext/readline/config.m4
Commit message (Collapse)AuthorAgeFilesLines
* Fix long-standing visual pain point: the misalignment of './configure help' ↵Christopher Jones2013-08-061-2/+2
| | | | | | text. Whitespace changes and a couple of grammar fixes.
* Fixed bug#54450 (callback function when built against libedit)Hannes Magnusson2011-09-061-0/+21
|
* - Implement FR#53878 Interactive shell should work with shared readline ↵Johannes Schlüter2011-02-191-1/+1
| | | | | | | | | extension # This is useful w/ distributors who like to build all things shared or don't # provide the readline extension. Or if a user pefers readline's behavior over # libedit which might be used by the distributor.
* - Fixed bug #50209 (Compiling with libedit cannot find readline.h)Felipe Pena2009-12-131-1/+1
| | | | | (patch by tcallawa at redhat dot com)
* - Fixed bug #48608 (Invalid libreadline version not detected during configure)Jani Taskinen2009-08-041-0/+7
|
* - Fixed bBug #48873 (Using both --with-libedit and --with-readline cause ↵Jani Taskinen2009-08-031-0/+3
| | | | | | | | unknown option warning) # This isn't worth of NEWS entry, it's just cosmetic
* - Fixed bug #48256 (Crash due to double-linking of history.o)Jani Taskinen2009-05-141-9/+0
|
* fix build with libeditfoobar2005-11-281-1/+1
|
* - Fixed bug #35409 (undefined reference to 'rl_completion_matches')foobar2005-11-281-3/+5
|
* MFB51: fix build when --with-libedit is usedfoobar2005-11-181-2/+4
|
* - Unify the "configure --help" textsfoobar2005-05-291-2/+2
|
* Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/libJoe Orton2004-11-031-7/+7
| | | | | to support multi-ABI platforms.
* Add support for the readline callback interface, allowing you to interleaveWez Furlong2004-08-241-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | 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
|
* - 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.
* - 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.
* Fix typo.foobar2002-08-221-1/+1
|
* php_new_extensionSascha Schumann2002-03-121-2/+2
|
* 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
|
* Unified the configure messages.foobar2001-11-301-5/+4
|
* Fixed two problems:foobar2001-08-221-0/+6
| | | | | | | | - CGI_BINARY was defined always thus this extension could be compiled with even when not building CGI binary. - HAVE_READLINE => HAVE_LIBREADLINE (typo)
* Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.foobar2001-03-271-9/+9
| | | | | # Heads up people! I tested this before committing but you never know..
* Libedit readline replacement supportStanislav Malyshev2001-01-181-0/+27
| | | | | # Comments are very welcome!
* Make readline compilable as shared moduleSascha Schumann2000-05-021-33/+23
|
* Some white-space changesSascha Schumann2000-03-261-1/+1
|
* fix solaris compileThies C. Arntzen2000-01-071-1/+11
|
* Get rid of config.h.stub. Note that you should embed a comment aboutSascha Schumann1999-12-301-1/+1
| | | | | | | what the respective define does into the AC_DEFINE macro. I.e. AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
* Integration of -ng changes. Changes:Sascha Schumann1999-12-301-1/+1
| | | | | | | | | | | | - added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
* the order *does* matter!Thies C. Arntzen1999-12-071-2/+2
|
* configure works for me (RH 6.1)Thies C. Arntzen1999-10-141-2/+29
| | | | | @- Added readline support. Works *only* in standalone mode! (Thies)
* interface to GNU-Readline! (not yet active, autoconf needs to be done)Thies C. Arntzen1999-10-141-0/+7
very neat - but only usable in standalone (command-promt) mode!