summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix silly mistake.Wez Furlong2004-05-262-4/+4
| | | | | Thanks Antony :)
* Avoid unnecessary and silly copying of constant name when registering.Andrei Zmievski2004-05-261-7/+9
|
* - Fix memory manager problemAndi Gutmans2004-05-261-4/+2
|
* Prepare for 0.2 release.Ilia Alshanetsky2004-05-261-3/+5
|
* Turn off session.auto_start to prevent test failures.Ilia Alshanetsky2004-05-261-0/+1
|
* Prevent test failure when fi_FI locale is not available.Ilia Alshanetsky2004-05-261-1/+8
|
* - Remove this test, it still segfaults anyway (less noise in tests :) )Pierre Joye2004-05-261-92/+0
| | | | | Already removed in PHP_4_3 branch
* - Use FREE_HASHTABLE instead of efree()Andi Gutmans2004-05-261-1/+1
|
* PQfreemem() is only available in 7.4Edin Kadribasic2004-05-261-1/+1
|
* Apparently it is better to specify 500 here for unix98 bits and pieces.Wez Furlong2004-05-261-2/+2
|
* Fix build...Wez Furlong2004-05-261-2/+0
|
* Update Reflection API class names. Whitespace fixes.Sebastian Bergmann2004-05-261-99/+99
|
* - Fixed bug #28523 (Typo in ext/sockets/sockets.c)Derick Rethans2004-05-261-1/+1
|
* ChangeLog update2004-05-262-0/+92
|
* break is betterStefan Esser2004-05-251-1/+1
|
* Allow use of scrollable cursor for ODBCWez Furlong2004-05-251-1/+21
|
* Use the correct label for the error messageWez Furlong2004-05-251-1/+1
|
* Allow setting the cursor name for ODBC statements, so that:Wez Furlong2004-05-251-1/+30
| | | | | | | UPDATE foo set .... WHERE CURRENT OF <NAME> statements will work.
* get/set attributes for statementsWez Furlong2004-05-253-2/+80
|
* Add flag to control the use of the ODBC cursor emulation library.Wez Furlong2004-05-253-0/+19
| | | | | | | The default (which should be safe) is to use the cursor library if it is needed. If for some reason either the driver or the emulation is broken, you may override this from your script.
* Some definitions for cursors.Wez Furlong2004-05-254-15/+35
| | | | | | Define a mechanism for driver-specific attributes. Use a refcount for the stmt structure.
* Whitespace: editor in the wrong mode ;)Edin Kadribasic2004-05-251-4/+4
|
* Add transaction supportEdin Kadribasic2004-05-251-3/+33
|
* PHP_SETUP_OPENSSL is NOT SNMP_SHARED_LIBADD, it's MCVE_SHARED_LIBADDBrad House2004-05-251-1/+3
| | | | | requires AC_PROG_EGREP when you phpize
* Cleanup.Ilia Alshanetsky2004-05-251-7/+5
|
* One more leak down.Ilia Alshanetsky2004-05-251-0/+2
|
* More leak fixes.Ilia Alshanetsky2004-05-252-0/+10
|
* Use binary safe function for quotingEdin Kadribasic2004-05-251-5/+11
|
* fix couple of memory leaksAntony Dovgal2004-05-251-0/+13
|
* More possible leak fixes (Thanks Tony).Ilia Alshanetsky2004-05-251-3/+8
|
* Fixed memory leak.Ilia Alshanetsky2004-05-251-8/+12
|
* One more memory leak.Ilia Alshanetsky2004-05-251-0/+11
|
* More leak fixes.Ilia Alshanetsky2004-05-252-4/+6
|
* - Nuke unused declerationAndi Gutmans2004-05-251-1/+0
|
* Fixed memory leak.Ilia Alshanetsky2004-05-252-8/+22
|
* Kill unused var.Ilia Alshanetsky2004-05-251-1/+1
|
* Merge that nicer error message here tooWez Furlong2004-05-251-8/+8
|
* *sigh*, obviously, we need this to be able to use sapi_module.nameWez Furlong2004-05-251-0/+1
|
* DEBUG -> PHP_DEBUGWez Furlong2004-05-251-1/+1
|
* Allow sqlite to build as a shared ext under win32Wez Furlong2004-05-251-1/+1
|
* check if it matches... not if it doesn't...Wez Furlong2004-05-251-1/+1
|
* In debug mode, under CLI don't close stderr.Wez Furlong2004-05-251-0/+9
| | | | | | | | This is so that we can see any error reports. # for extra paranoia, could limit this check to happen only after the script is # finished running.
* add "clean-pecl" rule for nuking pecl objectsWez Furlong2004-05-251-0/+4
|
* Tidy this up a little bit for win32.Wez Furlong2004-05-251-3/+5
|
* Throw exception during ctorWez Furlong2004-05-251-0/+5
|
* - More fixesAndi Gutmans2004-05-252-19/+17
|
* - Make fix compile.Andi Gutmans2004-05-252-8/+10
|
* - Fix memory leak in mem cache in conjunction with Zend MM. How come no oneAndi Gutmans2004-05-252-26/+27
| | | | | - noticed this? :)
* ChangeLog update2004-05-251-0/+40
|
* - Fix #28506, negative angle returns "random arcs"Pierre Joye2004-05-241-0/+5
| | | | | while (angle < 0) angle += 2*M_PI is used now