summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Fixed some protos.Egon Schmid2000-03-131-7/+7
|
* Changed HTTP_STATE_VARS to HTTP_SESSION_VARS.Andrei Zmievski2000-03-132-14/+14
| | | | | | @ Changed $HTTP_STATE_VARS to $HTTP_SESSION_VARS. Use only the latter @ version now! (Andrei)
* odbc_close() and odbc_close_all() working againAndreas Karajannis2000-03-132-12/+71
|
* remove java.library from the READMESam Ruby2000-03-132-8/+0
|
* # Oops - functions with multiple optional args suckRasmus Lerdorf2000-03-131-1/+1
|
* - Also check module API numberAndi Gutmans2000-03-131-5/+6
|
* gd-jpeg supportRasmus Lerdorf2000-03-134-1/+137
| | | | | @Add GD-JPEG Support (Rasmus)
* Eliminate java.library ini option in favor of rpathSam Ruby2000-03-137-100/+111
|
* Adding imap_rfc822_parse_headers(). This function lets you grab mail headersChuck Hagenbuch2000-03-122-126/+169
| | | | | | | | | | | | from anywhere - a saved message in an archive, a pop server, a database, etc - and parse them into an object similar to what imap_headerinfo() returns. It's just missing the flag info and other things that only come from the IMAP server. In the process of doing this, I seperated some more code out into a support function - _php_make_header_object() - since it was used in multiple functions. The module is slowly getting well organized.
* spelling correction, and rename make_event_object to _php_make_event_objectChuck Hagenbuch2000-03-121-4/+4
| | | | | for consistency.
* # Compiles. Doesn't work yet. Unless leaking memory counts as 'working'.Jouni Ahto2000-03-122-728/+2337
| | | | | # Trying to finish before RC1...
* Finished porting recode module.Kristian Köhntopp2000-03-123-3/+63
|
* pval->zvalChuck Hagenbuch2000-03-121-516/+515
| | | | | | | | | use the *_ex() functions use zend_get_parameters_ex Tested on my calendar code, and seems to be crash free. But I think I'll wait on converting the IMAP module, since this was quite a pain. :)
* - using _ex() functions now, thanks to Andrej.Kristian Köhntopp2000-03-121-23/+6
|
* - Guessing this is the problemAndi Gutmans2000-03-121-1/+1
|
* Use sprintf everywhere and define sprintf to php_sprintf, if sprintf is broken.Sascha Schumann2000-03-122-2/+2
|
* Also search for freetype headers in $prefix/include/freetypeSascha Schumann2000-03-121-1/+9
| | | | | PR: #3775
* Fix build on systems which lack snprintf or vsnprintf.Sascha Schumann2000-03-1211-11/+0
| | | | | PR: #3786
* remove recent patch to _close_odbc_conn calling _free_odbc_resultLeo Baschy2000-03-122-31/+0
|
* - Added additional DEFER macro.Kristian Köhntopp2000-03-115-0/+351
| | | | | | - First stab at porting the recode module. Still having problems with the _ex() functions, they core - why?
* - Oops I commited a name change for consistency of Zend/modules.h toAndi Gutmans2000-03-117-8/+8
| | | | | Zend/zend_modules.h before it being finished. Revert it
* - Don't define DEBUG anymore. Everyone should use PHP_DEBUG.Andi Gutmans2000-03-1111-21/+21
| | | | | | | | There are 2-3 third-party libs in PHP which use DEBUG and I left them this way (primary example is pcrelib). - Please test things and Andrei, can you check that pcrelib stopped printing the warning messages?
* - Don't load modules which have different debug and ZTS information thanAndi Gutmans2000-03-111-0/+17
| | | | | | | | PHP() (untested). Not sure how to handle API version. Should it also not load? It probably should but it might bite us at some point. @ Prevent from loading dynamic PHP modules which were compiled with different debug and thread safety modes than PHP, which resulted in a crash (Andi)
* switching the order of arguments of mcal_week_of_day() to be more flexible -Chuck Hagenbuch2000-03-111-2/+2
| | | | | | day, month, year now so that month and year can be defaulted at some point. this is also consistent with the library function.
* Add mcal_week_of_year(), submitted by jtaskine@hit.fi.Chuck Hagenbuch2000-03-112-0/+27
|
* - replaced some old code to access server variablesUwe Steinmann2000-03-102-7/+22
|
* - Weird that this wasn't caught earlierAndi Gutmans2000-03-101-1/+1
|
* _close_odbc_conn calls _free_odbc_result if possibleLeo Baschy2000-03-092-0/+31
|
* - fixed cpdf_set_font() errorUwe Steinmann2000-03-091-1/+2
|
* - ups, fixed stupid compile errorsUwe Steinmann2000-03-091-4/+1
|
* - dropped support for version of pdflib < 3.0Uwe Steinmann2000-03-092-190/+32
| | | | | - better detection of libs required for pdflib
* - bug fix, insertion of links back into HTML documentUwe Steinmann2000-03-091-2/+4
| | | | | - smarter test script
* (OCILogon) fixed crash in OCILogon if username was not valid (newly ↵Thies C. Arntzen2000-03-091-1/+1
| | | | introduced - no need for a NEWS entry)
* - several fixes and cleanups in hw moduleUwe Steinmann2000-03-083-28/+54
|
* Anything in $HTTP_SESSION_VARS[] is auto-registered, if register_globalsAndrei Zmievski2000-03-081-0/+11
| | | | | is turned off.
* - support for pdflib 3.0Uwe Steinmann2000-03-071-8/+2
|
* - quick hack to support pdflib 3.0 (not tested)Uwe Steinmann2000-03-071-7/+7
|
* Try to locate the mysql.sockSascha Schumann2000-03-072-1/+17
|
* - Enable MySQL by defaultAndi Gutmans2000-03-071-2/+2
|
* Expanded checking for pcre.h and libpcre.a.Andrei Zmievski2000-03-072-12/+30
|
* - Thies, it is crucial :)Andi Gutmans2000-03-071-2/+2
|
* - some cleanups and fixed memory leakUwe Steinmann2000-03-071-3/+5
|
* Unresolved external php_if_ftruncate on Win32Sam Ruby2000-03-071-1/+1
|
* - switch to zend's double link list finishedUwe Steinmann2000-03-071-22/+44
|
* Only define crypt if it is presentSam Ruby2000-03-071-0/+6
|
* Can't believe it hasn't been done yet.Andrei Zmievski2000-03-071-0/+5
|
* (php: dl) fixed MAXPATHLEN bugThies C. Arntzen2000-03-071-4/+12
| | | | | # now it's /* SAFE */ !
* Change default UNIX sock to /tmp/mysql.sockSascha Schumann2000-03-061-1/+1
|
* Build fixes - MySQL now actually worksSascha Schumann2000-03-063-1/+5
|
* @Cleaned up extension namespace (Stig)Stig Bakken2000-03-0639-527/+338
| | | | | | Cleaned up extension namespace, and changed ext/standard into one single extension.