summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove some old code.Wez Furlong2002-10-131-9/+1
|
* A much better probable fix for #16114.Wez Furlong2002-10-132-1/+25
|
* Probable fix for #16114Wez Furlong2002-10-131-1/+1
|
* Fix a nasty nasty bug:Wez Furlong2002-10-131-7/+33
| | | | | | | | | | | | | | | | | | | | | When not enough data to satisfy a read was found in the buffer, fgets modifies the buf pointer to point to the position to store the next chunk. It then returned the modified buf pointer, instead of a pointer to the start of the buffer. Also added some infrastructure for making fgets grow the buffer on-demand to the correct line-size. Since streams uses reasonable chunk sizes, the performance of the realloc's should be pretty good; in the best case, the line is already found completely in the buffer, so the returned buffer will be allocated to precisely the correct size. In the worst case, where the buffer only contains part of the line, we get a realloc per buffer fill. The reallocs are either the size of the remainder of the line, or the chunk_size (if the buffer sill does not contain a complete line). Each realloc adds an extra byte for a NUL terminator. I think this will perform quite well using the default chunk size of 8K.
* (php_socket_errno) win32 errno compatible macro.Wez Furlong2002-10-133-36/+79
| | | | | | (php_socket_strerror) win32 compatible strerror replacement. Add an E_NOTICE when a socket write fails.
* Increased the API number. (re: floats patch)Ilia Alshanetsky2002-10-131-1/+1
|
* - Fixed bug #19885, dl() no longer gives a fatal error when a moduleDerick Rethans2002-10-131-3/+4
| | | | | could not be loaded. (Derick)
* Redo the patch on Linux, the cygwin diff seems to be a bit broken.Sascha Schumann2002-10-131-24/+24
|
* PHP + thttpd (+IRCG) build using CYGWIN nowSascha Schumann2002-10-131-67/+86
|
* Remove set .xSascha Schumann2002-10-131-2/+0
|
* Use if block rather than an or expressionSascha Schumann2002-10-131-2/+8
|
* - Hardcode dependent ini settingDerick Rethans2002-10-137-0/+7
|
* * Add missing PHP_SUBST(awk).Martin Jansen2002-10-131-0/+1
|
* Fixed proto. Clean up.Yasuo Ohgaki2002-10-131-2/+2
|
* Need to init connstring when there are 2 args.Yasuo Ohgaki2002-10-131-0/+1
|
* make fastcgi usage threadsafe, ready for future multithreaded fastcgi ↵Shane Caraveo2002-10-133-91/+286
| | | | | | | | | | implementation get rid of environment overwriting but hooking into php's environment function set $_ENV correctly for mod_fastcgi add -b to specify binding for fastcgi new readme file with information for running under apache2.0 and iis
* Introduce connect_type option to pg_connect().Yasuo Ohgaki2002-10-132-6/+14
| | | | | | | pg_connect(conn_str, conn_type) is allowed. @Added PGSQL_CONNECT_FORCE_NEW option to pg_connect() (Yasuo) # If you have better idea about constant name(s), let me know.
* make php_import_environment_variables overwritable so fastcgi can correctlyShane Caraveo2002-10-132-3/+5
| | | | | set $_ENV.
* fixes for unix, untestedShane Caraveo2002-10-131-14/+17
| | | | | | remove exit calls fix a couple function definitions
* ignore test.dbmfoobar2002-10-130-0/+0
|
* These should be ignored.foobar2002-10-130-0/+0
|
* fix shutdown issuesShane Caraveo2002-10-131-19/+13
|
* fix invalid handle issue that shutdown php fastcgi prematurlyShane Caraveo2002-10-131-9/+6
| | | | | fix checking os name for impersonation
* Enable pg_escape_bytea().Yasuo Ohgaki2002-10-132-0/+2
|
* Fixed ZTS buildIlia Alshanetsky2002-10-131-4/+6
| | | | | Fixed 2 ZTS related warnings
* Make PHP follow 301 correctly.Wez Furlong2002-10-131-0/+1
| | | | | | | # There may be other cases that need handling properly; I'll have to spend # some time investigating why we even need special cases now; it's got # something to do with Ilia's patch to fix memory leaks.
* ChangeLog update2002-10-132-0/+136
|
* Add note about fhttpd removal.foobar2002-10-121-0/+1
|
* - Removed sapi/fhttpd (this webserver is dead)foobar2002-10-123-231/+10
|
* MFZE1 (floats & locale issue)Ilia Alshanetsky2002-10-125-0/+30
|
* No more needed herePierre Joye2002-10-121-21/+0
|
* - woohooo! Automatic build test submits!Derick Rethans2002-10-121-8/+112
|
* * update testStig Bakken2002-10-121-3/+9
|
* mention vpopmail.James Cox2002-10-121-0/+1
|
* - Hardcode setting which affects the testDerick Rethans2002-10-121-0/+1
|
* - Make the test do what it saysDerick Rethans2002-10-122-38/+37
|
* TypoSander Roobol2002-10-121-1/+1
|
* Fixed a bug introduced by previous patch.Ilia Alshanetsky2002-10-121-2/+2
|
* Add test for single directory creationPierre Joye2002-10-121-0/+5
| | | | | this test actually fails
* added cybercash to the killed exts list..foobar2002-10-121-1/+2
|
* * 1.0b1 is todayStig Bakken2002-10-121-1/+2
|
* * added "pear makerpm" command for wrapping PEAR packages in RPMsStig Bakken2002-10-123-1/+162
|
* * rename System::type to System::whichStig Bakken2002-10-122-9/+9
|
* * CLI layout adjustmentStig Bakken2002-10-121-1/+3
|
* I already said that this construct was wrong...Stefan Esser2002-10-121-2/+3
| | | | | most probably fixes bug #19876
* Fixed memory leaks.Ilia Alshanetsky2002-10-121-5/+14
|
* Use AC_ARG_WITH instead of PHP_ARG_WITH.foobar2002-10-121-5/+13
|
* paranoiaWez Furlong2002-10-121-1/+6
|
* Fix typofoobar2002-10-121-1/+1
|
* Write in blocks of the current chunk_size for a stream.Wez Furlong2002-10-121-6/+19
| | | | | Should resolve problems with network writes.