summaryrefslogtreecommitdiff
path: root/sapi/cli
Commit message (Collapse)AuthorAgeFilesLines
* This is experimental stillfoobar2002-04-141-1/+1
|
* Make this work as it was supposed to work.foobar2002-04-141-10/+6
|
* Hidden the existance of CLI SAPI by:Edin Kadribasic2002-03-254-3/+8
| | | | | | | | | | | | - removing the NEWS entry - removing cli from make install chain - marking it EXPERIMENTAL - reverting installed name of cgi from php-cgi to php Marged max_execution_time override from head. # I really hope that people who found cli to be "inconsistent" and # "unstable" will find time to help rectify those problems.
* #according to my ideas/patchesMarcus Boerger2002-03-151-1/+1
|
* -release mergeMarcus Boerger2002-03-131-40/+75
| | | | | #discussed with derick
* - Make the errorcode 255. (Doing docs right away)Derick Rethans2002-02-151-2/+2
|
* - Let php_execute_script return 0 on failure and 1 on sucess, and changeDerick Rethans2002-02-141-1/+5
| | | | | SAPIs accordingly. (Andrei, Derick)
* Turned implicit_flush on.Edin Kadribasic2002-02-141-5/+4
| | | | | Cleaned up help text.
* Added README file for CLI SAPI.Edin Kadribasic2002-02-141-0/+15
|
* Enable extensions to specify that they are not supposed to beEdin Kadribasic2002-01-301-1/+0
| | | | | | built with the CLI SAPI. This is done by passing "nocli" as the 3rd parameter to PHP_EXTENSION macro.
* Add a note that this statement will never be reached.Jon Parise2002-01-271-1/+1
|
* Added --disable-cli option.Edin Kadribasic2002-01-241-3/+18
|
* Give Edin Kadribasic his due credits.Sebastian Bergmann2002-01-231-3/+3
|
* No need to dupe this string in cli sapi (Bug #15181).Edin Kadribasic2002-01-231-1/+1
|
* Modified the build system to make certain extensions (pcntl, ncurses,Edin Kadribasic2002-01-201-1/+2
| | | | | | | 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.
* Merged patch from sapi/cgi.Edin Kadribasic2002-01-191-2/+7
| | | | | # I will try to sync relevant patches from sapi/cgi to sapi/cli
* Fixed build in the directory other than $top_srcdir.Edin Kadribasic2002-01-131-4/+4
|
* This should fix cli build when running 'make install' directly.Edin Kadribasic2002-01-131-2/+2
|
* Fixed CLI build when the main SAPI is built as a shered library.Edin Kadribasic2002-01-121-0/+3
|
* Modified the build system to always build CLI SAPI.Edin Kadribasic2002-01-122-19/+28
|
* @- Added CLI (command line intrerface) sapi based on a cut-down versionEdin Kadribasic2002-01-066-0/+830
@ of the CGI sapi which is more suited for writing shell scripts. Some of @ the differences are: it prints no HTTP headers, displays plain text @ error messages, etc. (Edin) Added CLI (command line intrerface) sapi. # Let's see if a build expert can make this compile along # side some other sapi.