summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'before-sapi-split'.before-sapi-splitSVN Migration1999-09-261-59/+0
|
* Expand relative paths properly, otherwise build process will fail.Sascha Schumann1999-09-261-0/+1
|
* Do not try to free NULLs.Sascha Schumann1999-09-251-4/+4
|
* fixed callback code -> now $parser is passed as a resource!Thies C. Arntzen1999-09-251-105/+96
|
* Add entry for AOLserver.Sascha Schumann1999-09-251-0/+1
|
* New Zend APISascha Schumann1999-09-255-83/+85
|
* Use new Zend APISascha Schumann1999-09-251-261/+264
|
* odbc now uses the new Zend function apiAndreas Karajannis1999-09-251-270/+271
|
* Use new Zend API.Stefan Roehrich1999-09-251-82/+80
|
* - Updated array functions to use high-performance APIAndrey Hristov1999-09-242-105/+116
| | | | | - Updated preg_split() to allow returning only non-empty pieces
* Update to new high-performance function API.Andrey Hristov1999-09-241-64/+64
|
* Use new Zend API.Sascha Schumann1999-09-247-84/+86
|
* Use new Zend API and some minor cleanup.Sascha Schumann1999-09-244-178/+137
|
* Extended var_dump to handle IS_RESOURCE somewhat.Andrey Hristov1999-09-241-0/+9
|
* Update WDDX for new high-performance function API.Andrey Hristov1999-09-241-43/+36
|
* updated XML (only partly tested)Thies C. Arntzen1999-09-242-119/+123
|
* more high-tech shared buildingStig Bakken1999-09-242-15/+1
|
* kill another warningStig Bakken1999-09-241-1/+3
|
* kill warningStig Bakken1999-09-241-0/+4
|
* use getParameterExThies C. Arntzen1999-09-241-156/+157
|
* fixed warningThies C. Arntzen1999-09-241-2/+1
|
* Compile fixes for WDDX, XML and Zlib (untested)Zeev Suraski1999-09-243-29/+29
|
* This should make the Sybase CT module compile again (untested)Zeev Suraski1999-09-241-13/+13
|
* This should make the mSQL module compile again (untested)Zeev Suraski1999-09-241-10/+10
|
* Ok guys, the prototype for zend_fetch_resource*() has changed - it nowZeev Suraski1999-09-241-129/+129
| | | | | | | | | | | | accepts a zval ** instead of a zval *, to be suitable for use with the getParametersEx() API. You don't have to switch to the getParametersEx() API, but you will have to go over your code and add &'s where it's applicable (of course, if you have the mental strength to go over your code and convert it to use the Ex API, it's best). The MySQL module now uses the getParametersEx() API completely.
* fixed php3 code problemAndrew Skalski1999-09-232-5/+5
|
* Small clarification.Andrey Hristov1999-09-232-2/+4
|
* This version is finally the standard one. The last one was createdSascha Schumann1999-09-231-201/+123
| | | | | using the 'nested ifs mode' which seems to be the source of the problem.
* Added support for Easysoft ODBC-ODBC BridgeNick Gorham1999-09-235-1/+46
| | | | | Fixed bug in odbc_setoption
* fixed typo in mcal_list_alarms()Andrew Skalski1999-09-231-1/+1
|
* re2c's bit vectors appear to be not binary clean. Revert toSascha Schumann1999-09-232-97/+102
| | | | | standard mode for the moment.
* tiny optimisationThies C. Arntzen1999-09-231-1/+1
|
* Ora_Fetch_Into now resets the returned array in all casesThies C. Arntzen1999-09-231-9/+10
|
* fixed NULL columnThies C. Arntzen1999-09-232-68/+68
| | | | | cleanups
* Added support for metadata functions, odbc_tables, odbc_columns,Nick Gorham1999-09-222-6/+982
| | | | | | | | odbc_columnprivileges, odbc_foreignkeys, odbc_gettypeinfo, odbc_primarykeys, odbc_procedurecolumns, odbc_procedures, odbc_procedurecolumns, odbc_procedures, odbc_specialcolumns, odbc_statistics, odbc_tableprivileges
* added null-checking in make_event_objectAndrew Skalski1999-09-221-3/+6
|
* Added optional port argument to ftp_connect()Andrew Skalski1999-09-224-4/+55
|
* i always forget something;-)Thies C. Arntzen1999-09-221-10/+2
|
* fixed Ora_PLogon (rewrote ora_do_logon using php_mysql.c)Thies C. Arntzen1999-09-222-297/+180
| | | | | oracle_hack.c should no longer be needed!
* resourcified OracleThies C. Arntzen1999-09-221-120/+53
|
* Fixed gzgetss() with new _php3_strip_tags, corrected prototype.Stefan Roehrich1999-09-221-2/+2
|
* - fixed misleading explaination of fdftk optionUwe Steinmann1999-09-221-1/+1
|
* - Get rid of warning on win32, non-threadsafe mode.Andi Gutmans1999-09-221-0/+4
|
* removed NULL referenceAndrew Skalski1999-09-211-3/+1
|
* added missing "addr.sin_family = AF_INET" to socket routinesAndrew Skalski1999-09-211-0/+2
|
* WDDX can now serialize and deserialize objects. It uses a variable namedAndrey Hristov1999-09-211-9/+62
| | | | | | | 'php_classname' to store the class name as part of the structure. This way WDDX modules in other languages don't get broken by extensions to DTD we would have had to make otherwise.
* Slightly redundant to check for crypt() here again, but the TRY_RUN stuffRasmus Lerdorf1999-09-211-0/+4
| | | | | | needs it defined in the same m4 file or it won't work, and it will just get pulled out of the cache anyway, so it isn't a big deal.
* fgetss/gzgetss fixesRasmus Lerdorf1999-09-213-3/+5
|
* A couple of fixes.Andrey Hristov1999-09-212-5/+5
|
* AC_CRYPT_CAP depends on symbol checks performed later.Sascha Schumann1999-09-211-2/+2
|