summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* added testcases to project fileexperimental/ZendEngine2Harald Radi2002-08-051-0/+16
|
* add dispatch.cHarald Radi2002-07-271-0/+4
|
* merging parts of the old com extension to the new rpc extensionHarald Radi2002-07-101-68/+40
|
* MFHHarald Radi2002-07-091-36/+69
|
* MFHHarald Radi2002-07-092-19/+75
|
* This commit was manufactured by cvs2svn to create branch 'ZendEngine2'.SVN Migration2002-07-031-0/+167
|
* MFHHarald Radi2002-04-191-3/+114
|
* MFHHarald Radi2002-03-191-8/+20
|
* reduced warninglevel to remove the annoyingHarald Radi2002-03-171-0/+2
| | | | | warnings from the re2c generated code
* project file for ZendEngine2 migrationHarald Radi2002-03-161-44/+52
|
* no messageHarald Radi2002-03-161-2/+2
|
* This commit was manufactured by cvs2svn to create branch 'ZendEngine2'.SVN Migration2002-03-161877-515219/+0
|
* - Add streams.c and php_streams.h to project.Andi Gutmans2002-03-161-0/+8
|
* fixed some errors of mbstring in regression tests.Rui Hirokawa2002-03-1621-53/+70
|
* - Do not use @ when you're merging the fixes to the release branch.foobar2002-03-161-1/+2
| | | | | Instead, edit the NEWS file manually.
* some minor docu-in-header changesWez Furlong2002-03-162-4/+15
|
* Quick fix build error when ptrdiff_t is not defined in types.h or sys/types.hYasuo Ohgaki2002-03-161-1/+3
|
* ZTS build fixYasuo Ohgaki2002-03-161-1/+1
|
* ZTS build fixYasuo Ohgaki2002-03-161-4/+4
|
* Allow php_stream_copy_to_stream to do nothing when used with codeWez Furlong2002-03-164-6/+16
| | | | | that calculates a max length of zero. (Thanks again Marcus).
* -use of corrected stream seekMarcus Boerger2002-03-161-7/+4
| | | | | | #thanks to Wez! #image.c no works again
* some tweaks for seek/read used in image.c (thanks Marcus)Wez Furlong2002-03-161-4/+9
|
* This should help with some build problems/warnings under win32.Wez Furlong2002-03-165-7/+17
| | | | | | | Someone still needs to add the streams.c file to the MSVC project/workspace though (there are so many that I don't really know what I am doing :-).
* -new streamsMarcus Boerger2002-03-161-4/+6
|
* more *'sWez Furlong2002-03-165-62/+62
|
* change * formattingWez Furlong2002-03-163-17/+17
|
* * formatting, plus remove some old fopen wrappersWez Furlong2002-03-169-307/+47
|
* change * formattingWez Furlong2002-03-1611-45/+45
|
* NEWS update2002-03-161-0/+1
|
* ChangeLog update2002-03-162-0/+205
|
* the 'setup' script was removed more than two years ago.jim winstead2002-03-1635-378/+0
| | | | | these can be safely removed from the 4.2 branch, too.
* - More whitespace. I really can't do the other files though...Andi Gutmans2002-03-161-40/+40
|
* - Change one strncpy() to strlcpy().Andi Gutmans2002-03-161-100/+116
| | | | | | | | | | | | | - Big indentation patch. I don't have strength to do all of the changed - files but here's a good example. Please try and keep to the coding - standards even if you think they suck :) - Things to keep in mind: - void *foo and not void * foo; - if() { and not if()<TAB>{ - } else { and not {\nelse - - The streams stuff looks very cool though! :)
* ongoing development ...Harald Radi2002-03-157-65/+267
|
* This entry belongs under 4.2.0.foobar2002-03-151-2/+2
|
* New PHP streams...Wez Furlong2002-03-1541-2148/+2356
|
* @ fixed a bug that caused php to crash in php_COM_get_ids_of_names() ↵Harald Radi2002-03-152-0/+4
| | | | (Harald, Paul)
* - Corrected these entries. (catched by Derick)foobar2002-03-151-3/+2
|
* - Fixed grammar, made some entries make more sense...etc. (proof read please :)foobar2002-03-151-90/+94
| | | | | | | # People, PLEASE try keeping in mind that these entries are for # the end-users. ie. they need to explain what was changed and why. # And be consistent too..
* - Fix proto (again)Derick Rethans2002-03-151-3/+1
|
* - proto fixesDerick Rethans2002-03-151-4/+4
|
* don't redefine NDEBUG if it is already defined. yeesh.jim winstead2002-03-151-0/+2
|
* - Pass TSRMLS to callbacks.Andi Gutmans2002-03-155-25/+29
|
* - Scope fix. When calling an imported function the scope will changeAndi Gutmans2002-03-151-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - correctly to the scope of the functions class. <?php function Hello() { print "Wrong one\n"; } class MyClass { static $hello = "Hello, World\n"; function Hello() { print self::$hello; } function Trampoline() { Hello(); } } import function Trampoline from MyClass; Trampoline(); ?>
* added new ibase_fetch_assoc() php functionDaniela Mariaschi2002-03-152-15/+22
|
* - Fix issues with $this when using it by itself without indirection such asAndi Gutmans2002-03-154-78/+54
| | | | | - $this->foo.
* * "new and improved" iconv testStig Bakken2002-03-153-28/+50
|
* fixed HashTable allocationHarald Radi2002-03-154-19/+129
|
* * fix for db3 from ports on freebsdStig Bakken2002-03-151-2/+5
|
* - Revert assert fix until it becomes clear what was wrong with my previousAndi Gutmans2002-03-151-2/+0
| | | | | - fix. I don't see any warnings when building with VC++ English.